1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 16:39:31 +03:00
nixpkgs/pkgs/development/python-modules/irc/default.nix

40 lines
871 B
Nix
Raw Normal View History

2020-06-22 18:08:55 -07:00
{ lib, buildPythonPackage, fetchPypi, isPy3k
2018-09-03 01:21:37 +01:00
, six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools
, setuptools-scm, jaraco_collections, importlib-metadata
}:
2018-09-03 01:21:37 +01:00
buildPythonPackage rec {
pname = "irc";
2022-01-02 08:51:56 +00:00
version = "20.0.0";
2018-09-03 01:21:37 +01:00
2019-01-18 12:35:42 +01:00
disabled = !isPy3k;
2018-09-03 01:21:37 +01:00
src = fetchPypi {
inherit pname version;
2022-01-02 08:51:56 +00:00
sha256 = "59acb8d69d61a0cbd290e77e6ff10a8c7f2201fb8c7b7d5a195b5883d0c40b0a";
2018-09-03 01:21:37 +01:00
};
doCheck = false;
2020-09-18 12:53:24 -07:00
pythonImportsCheck = [ "irc" ];
nativeBuildInputs = [ setuptools-scm ];
2018-09-03 01:21:37 +01:00
propagatedBuildInputs = [
six
2019-10-24 08:47:36 +02: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-22 18:08:55 -07: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
}