Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / nclib / default.nix
blobc2717746bf6904fdc6f5a069b2cb043f404b1b44
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "nclib";
9   version = "1.0.5";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-sKbISlL5hOBu1j6zWSib2HjJCvEoMrqdwzgG2keMqDE=";
17   };
19   # Project has no tests
20   doCheck = false;
22   pythonImportsCheck = [
23     "nclib"
24   ];
26   meta = with lib; {
27     description = "Python module that provides netcat features";
28     homepage = "https://nclib.readthedocs.io/";
29     license = with licenses; [ mit ];
30     maintainers = with maintainers; [ fab ];
31   };