mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
pythonPackages.partd: python2 no longer supported
This commit is contained in:
parent
8ab3ba1f23
commit
d149ed1d81
@ -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/;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user