ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / scp / default.nix
bloba8a152b0a34c7a59af836b095a8e69d5d6e6f196
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , paramiko
5 , python
6 }:
8 buildPythonPackage rec {
9   pname = "scp";
10   version = "0.14.4";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-VGmbkstorjS1koxIqIjquXIqISUCy6iap5W9Vll1Bb0=";
15   };
17   propagatedBuildInputs = [
18     paramiko
19   ];
21   checkPhase = ''
22     SCPPY_PORT=10022 ${python.interpreter} test.py
23   '';
25   #The Pypi package doesn't include the test
26   doCheck = false;
28   pythonImportsCheck = [ "scp" ];
30   meta = with lib; {
31     homepage = "https://github.com/jbardin/scp.py";
32     description = "SCP module for paramiko";
33     license = licenses.lgpl21Only;
34     maintainers = with maintainers; [ xnaveira ];
35   };