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

38 lines
824 B
Nix
Raw Normal View History

2020-06-23 02:08:55 +01:00
{ lib, buildPythonPackage, fetchPypi, isPy3k
2018-09-03 01:21:37 +01:00
, six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools
2019-10-24 07:47:36 +01:00
, setuptools_scm, jaraco_collections, importlib-metadata
}:
2018-09-03 01:21:37 +01:00
buildPythonPackage rec {
pname = "irc";
2020-01-07 10:51:02 +00:00
version = "18.0.0";
2018-09-03 01:21:37 +01:00
2019-01-18 11:35:42 +00:00
disabled = !isPy3k;
2018-09-03 01:21:37 +01:00
src = fetchPypi {
inherit pname version;
2020-01-07 10:51:02 +00:00
sha256 = "1qg5996mzvhnkm74ksaa4d47fz5vrpw6hvxyaq9kf6y4cf1l76wq";
2018-09-03 01:21:37 +01:00
};
doCheck = false;
2020-06-23 02:08:55 +01:00
nativeBuildInputs = [ setuptools_scm ];
2018-09-03 01:21:37 +01:00
propagatedBuildInputs = [
six
2019-10-24 07:47:36 +01:00
importlib-metadata
2018-09-03 01:21:37 +01:00
jaraco_logging
jaraco_text
jaraco_stream
pytz
jaraco_itertools
jaraco_collections
2018-09-03 01:21:37 +01:00
];
2020-06-23 02:08:55 +01:00
meta = with lib; {
description = "IRC (Internet Relay Chat) protocol library for Python";
homepage = "https://github.com/jaraco/irc";
license = licenses.mit;
maintainers = [];
};
2018-09-03 01:21:37 +01:00
}