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

31 lines
623 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
2019-10-24 06:47:36 +00:00
, setuptools_scm, jaraco_collections, importlib-metadata
}:
2018-09-03 00:21:37 +00:00
buildPythonPackage rec {
pname = "irc";
2019-10-24 06:47:36 +00:00
version = "17.1";
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;
2019-10-24 06:47:36 +00:00
sha256 = "0c19aeee800dbad792179d70dff1281c06fec220323f8ec34150cd94357f383b";
2018-09-03 00:21:37 +00:00
};
doCheck = false;
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [
six
2019-10-24 06:47:36 +00:00
importlib-metadata
2018-09-03 00:21:37 +00:00
jaraco_logging
jaraco_text
jaraco_stream
pytz
jaraco_itertools
jaraco_collections
2018-09-03 00:21:37 +00:00
];
}