Unverified Commit 536b5f6f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.ssh-python: 1.1.1 -> 1.2.0.post1 (#452923)

parents 5d7854cc 0375f028
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -11,20 +11,20 @@

buildPythonPackage rec {
  pname = "ssh-python";
  version = "1.1.1";
  format = "setuptools";
  version = "1.2.0.post1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ParallelSSH";
    repo = "ssh-python";
    tag = version;
    hash = "sha256-kidz4uHT5C8TUROLGQUHihemYtwOoWZQNw7ElbwYKLM=";
    hash = "sha256-ix6UzyC/mFDVOvfJujwppijmsTrwNtuDAkmikrKKc2o=";
  };

  build-system = [ setuptools ];
  nativeBuildInputs = [
    cython
  ];

  nativeBuildInputs = [ cython ];

  buildInputs = [
    openssl
    zlib