pythonPackages.partd: python2 no longer supported

This commit is contained in:
Jonathan Ringer 2019-12-24 01:35:15 -08:00 committed by Frederik Rietdijk
parent 8ab3ba1f23
commit d149ed1d81

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
, locket
, numpy
@ -12,6 +13,7 @@
buildPythonPackage rec {
pname = "partd";
version = "1.1.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
@ -32,4 +34,4 @@ buildPythonPackage rec {
license = with lib.licenses; [ bsd3 ];
homepage = https://github.com/dask/partd/;
};
}
}