python3Packages.scp: 0.13.4 -> 0.13.5

This commit is contained in:
Fabian Affolter 2021-07-04 17:03:07 +02:00
parent b118976151
commit 4bc9ad7a75

View file

@ -7,11 +7,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "scp"; pname = "scp";
version = "0.13.4"; version = "0.13.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "e60948dd3e1aa13da21aa1bf8a025fabbbc2816ed04f1a1272410247d1a86f15"; sha256 = "sha256-CrLukXi4vlPcXJ/i8zdh4BokNQh/XJ+1tUUZhzxlDWA=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -25,10 +25,12 @@ buildPythonPackage rec {
#The Pypi package doesn't include the test #The Pypi package doesn't include the test
doCheck = false; doCheck = false;
pythonImportsCheck = [ "scp" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/jbardin/scp.py"; homepage = "https://github.com/jbardin/scp.py";
description = "SCP module for paramiko"; description = "SCP module for paramiko";
license = licenses.lgpl3; license = licenses.lgpl21Only;
maintainers = with maintainers; [ xnaveira ]; maintainers = with maintainers; [ xnaveira ];
}; };
} }