nixpkgs/pkgs/development/python-modules/ncclient/default.nix

40 lines
792 B
Nix
Raw Normal View History

2018-03-02 14:33:07 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, paramiko
, selectors2
2018-03-02 14:33:07 +00:00
, lxml
, nose
, rednose
2018-03-02 14:33:07 +00:00
}:
buildPythonPackage rec {
pname = "ncclient";
2019-12-29 09:28:08 +00:00
version = "0.6.7";
2018-03-02 14:33:07 +00:00
src = fetchPypi {
inherit pname version;
2019-12-29 09:28:08 +00:00
sha256 = "efdf3c868cd9f104d4e9fe4c233df78bfbbed4b3d78ba19dc27cec3cf6a63680";
2018-03-02 14:33:07 +00:00
};
checkInputs = [ nose rednose ];
2018-03-02 14:33:07 +00:00
propagatedBuildInputs = [
paramiko lxml selectors2
2018-03-02 14:33:07 +00:00
];
checkPhase = ''
nosetests test --rednose --verbosity=3 --with-coverage --cover-package ncclient
'';
#Unfortunately the test hangs at te end
doCheck = false;
2018-03-02 14:33:07 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/ncclient/ncclient";
2018-03-02 14:33:07 +00:00
description = "Python library for NETCONF clients";
license = licenses.asl20;
maintainers = with maintainers; [ xnaveira ];
};
}