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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
901 B
Nix
Raw Normal View History

2020-06-23 01:08:55 +00:00
{ lib, 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, importlib-metadata
}:
2018-09-03 00:21:37 +00:00
buildPythonPackage rec {
pname = "irc";
2022-07-16 10:59:13 +00:00
version = "20.1.0";
format = "pyproject";
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;
2022-07-16 10:59:13 +00:00
sha256 = "sha256-tvc3ky3UeR87GOMZ3nt9rwLSKFpr6iY9EB9NjlU4B+w=";
2018-09-03 00:21:37 +00:00
};
nativeBuildInputs = [ setuptools-scm ];
2022-07-16 10:59:13 +00:00
2018-09-03 00:21:37 +00:00
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
];
2020-06-23 01:08:55 +00:00
2022-07-16 10:59:13 +00:00
doCheck = false;
pythonImportsCheck = [ "irc" ];
2020-06-23 01:08:55 +00:00
meta = with lib; {
description = "IRC (Internet Relay Chat) protocol library for Python";
homepage = "https://github.com/jaraco/irc";
license = licenses.mit;
2022-07-16 10:59:13 +00:00
maintainers = with maintainers; [];
2020-06-23 01:08:55 +00:00
};
2018-09-03 00:21:37 +00:00
}