3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/nclib/default.nix

28 lines
594 B
Nix
Raw Normal View History

2021-04-23 12:55:51 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "nclib";
2021-06-18 22:47:26 +01:00
version = "1.0.1";
2021-04-23 12:55:51 +01:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2021-06-18 22:47:26 +01:00
sha256 = "9d41adb7df01a3fead10bc9698a175936b263d6bd18997078ed17e4fa61734d1";
2021-04-23 12:55:51 +01:00
};
# 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 ];
};
}