at 22.05-pre 594 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5}: 6 7buildPythonPackage rec { 8 pname = "nclib"; 9 version = "1.0.1"; 10 disabled = pythonOlder "3.5"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "9d41adb7df01a3fead10bc9698a175936b263d6bd18997078ed17e4fa61734d1"; 15 }; 16 17 # Project has no tests 18 doCheck = false; 19 pythonImportsCheck = [ "nclib" ]; 20 21 meta = with lib; { 22 description = "Python module that provides netcat features"; 23 homepage = "https://nclib.readthedocs.io/"; 24 license = with licenses; [ mit ]; 25 maintainers = with maintainers; [ fab ]; 26 }; 27}