summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/humanize
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-06-16 13:57:19 -0700
committerJonathan Ringer <jonringer117@gmail.com>2020-06-16 13:57:19 -0700
commitde231741d15c9d6ee4a4ee60583106263c8073e2 (patch)
treeba9cc4762614270239736453c57aee2d7b5edf29 /pkgs/development/python-modules/humanize
parentpythonPackages.filemagic: disable python2, no longer compat (diff)
downloadnixpkgs-de231741d15c9d6ee4a4ee60583106263c8073e2.tar.gz
pythonPackages.humanize: disable python2, setup.py is py3 only
Diffstat (limited to 'pkgs/development/python-modules/humanize')
-rw-r--r--pkgs/development/python-modules/humanize/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/humanize/default.nix b/pkgs/development/python-modules/humanize/default.nix
index 10f1b8000688..418a8e203e4b 100644
--- a/pkgs/development/python-modules/humanize/default.nix
+++ b/pkgs/development/python-modules/humanize/default.nix
@@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
+, isPy27
, mock
, setuptools_scm
}:
@@ -8,6 +9,7 @@
buildPythonPackage rec {
version = "2.4.0";
pname = "humanize";
+ disabled = isPy27; # setup.py no longer compatible
src = fetchPypi {
inherit pname version;