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

42 lines
810 B
Nix
Raw Normal View History

2018-03-02 15:33:07 +01:00
{ stdenv
, buildPythonPackage
, fetchPypi
, paramiko
, selectors2
2018-03-02 15:33:07 +01:00
, lxml
, libxml2
, libxslt
, nose
, rednose
2018-03-02 15:33:07 +01:00
}:
buildPythonPackage rec {
pname = "ncclient";
2019-05-30 08:49:51 +02:00
version = "0.6.6";
2018-03-02 15:33:07 +01:00
src = fetchPypi {
inherit pname version;
2019-05-30 08:49:51 +02:00
sha256 = "2b367354d1cd25b79b8798a0b4c1949590d890057f2a252e6e970a9ab744e009";
2018-03-02 15:33:07 +01:00
};
checkInputs = [ nose rednose ];
2018-03-02 15:33:07 +01:00
propagatedBuildInputs = [
paramiko lxml libxml2 libxslt selectors2
2018-03-02 15:33:07 +01:00
];
checkPhase = ''
nosetests test --rednose --verbosity=3 --with-coverage --cover-package ncclient
'';
#Unfortunately the test hangs at te end
doCheck = false;
2018-03-02 15:33:07 +01:00
meta = with stdenv.lib; {
homepage = http://ncclient.org/;
description = "Python library for NETCONF clients";
license = licenses.asl20;
maintainers = with maintainers; [ xnaveira ];
};
}