nixpkgs/pkgs/development/python-modules/irc/default.nix

30 lines
580 B
Nix
Raw Normal View History

2019-01-18 11:35:42 +00:00
{ buildPythonPackage, fetchPypi, isPy3k
2018-09-03 00:21:37 +00:00
, six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools
, setuptools_scm, jaraco_collections
}:
2018-09-03 00:21:37 +00:00
buildPythonPackage rec {
pname = "irc";
2018-11-04 10:35:03 +00:00
version = "17.0";
2018-09-03 00:21:37 +00:00
2019-01-18 11:35:42 +00:00
disabled = !isPy3k;
2018-09-03 00:21:37 +00:00
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:03 +00:00
sha256 = "f9c5fcb72dd230e1387fd4a0114a1935605e0f59ac09dec962313baed74e1365";
2018-09-03 00:21:37 +00:00
};
doCheck = false;
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [
six
jaraco_logging
jaraco_text
jaraco_stream
pytz
jaraco_itertools
jaraco_collections
2018-09-03 00:21:37 +00:00
];
}