pythonPackages.humanize: disable python2, setup.py is py3 only
This commit is contained in:
parent
622e5db89e
commit
de231741d1
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue