Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 580 B view raw
1{ buildPythonPackage, fetchPypi, isPy3k 2, six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools 3, setuptools_scm, jaraco_collections 4}: 5 6buildPythonPackage rec { 7 pname = "irc"; 8 version = "17.0"; 9 10 disabled = !isPy3k; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "f9c5fcb72dd230e1387fd4a0114a1935605e0f59ac09dec962313baed74e1365"; 15 }; 16 17 doCheck = false; 18 19 buildInputs = [ setuptools_scm ]; 20 propagatedBuildInputs = [ 21 six 22 jaraco_logging 23 jaraco_text 24 jaraco_stream 25 pytz 26 jaraco_itertools 27 jaraco_collections 28 ]; 29}