forked from mirrors/nixpkgs
zict: disable build for Python older than 3.6
No longer supported as of
4d5e14dadb
This commit is contained in:
parent
fc709e6dfe
commit
36f7a407ad
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
, pytest, heapdict }:
|
, pytest, heapdict, pythonOlder }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "zict";
|
pname = "zict";
|
||||||
|
@ -10,6 +10,8 @@ buildPythonPackage rec {
|
||||||
sha256 = "8e2969797627c8a663575c2fc6fcb53a05e37cdb83ee65f341fc6e0c3d0ced16";
|
sha256 = "8e2969797627c8a663575c2fc6fcb53a05e37cdb83ee65f341fc6e0c3d0ced16";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
buildInputs = [ pytest ];
|
buildInputs = [ pytest ];
|
||||||
propagatedBuildInputs = [ heapdict ];
|
propagatedBuildInputs = [ heapdict ];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue