Skip to content

Commit

Permalink
python3Packages.irc: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
wkral committed Sep 18, 2020
1 parent 93fd4b5 commit 7567bd6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/irc/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k
, six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools
, setuptools_scm, jaraco_collections, importlib-metadata
, setuptools_scm, jaraco_collections, importlib-metadata, toml
}:

buildPythonPackage rec {
Expand All @@ -16,6 +16,8 @@ buildPythonPackage rec {

doCheck = false;

pythonImportsCheck = [ "irc" ];

nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [
six
Expand All @@ -26,6 +28,7 @@ buildPythonPackage rec {
pytz
jaraco_itertools
jaraco_collections
toml
];

meta = with lib; {
Expand Down

0 comments on commit 7567bd6

Please sign in to comment.