python3Packages.nclib: init at 1.0.0
This commit is contained in:
parent
92c77733ac
commit
e861822d4f
|
@ -0,0 +1,27 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "nclib";
|
||||||
|
version = "1.0.0";
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0kf8x30lrwhijab586i54g70s3sxvm2945al48zj27grj0pagh7g";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "nclib" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python module that provides netcat features";
|
||||||
|
homepage = "https://nclib.readthedocs.io/";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4639,6 +4639,8 @@ in {
|
||||||
|
|
||||||
ncclient = callPackage ../development/python-modules/ncclient { };
|
ncclient = callPackage ../development/python-modules/ncclient { };
|
||||||
|
|
||||||
|
nclib = callPackage ../development/python-modules/nclib { };
|
||||||
|
|
||||||
ndg-httpsclient = callPackage ../development/python-modules/ndg-httpsclient { };
|
ndg-httpsclient = callPackage ../development/python-modules/ndg-httpsclient { };
|
||||||
|
|
||||||
ndjson = callPackage ../development/python-modules/ndjson { };
|
ndjson = callPackage ../development/python-modules/ndjson { };
|
||||||
|
|
Loading…
Reference in New Issue