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,5 +1,5 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, pytest, heapdict }:
|
||||
, pytest, heapdict, pythonOlder }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zict";
|
||||
|
@ -10,6 +10,8 @@ buildPythonPackage rec {
|
|||
sha256 = "8e2969797627c8a663575c2fc6fcb53a05e37cdb83ee65f341fc6e0c3d0ced16";
|
||||
};
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
propagatedBuildInputs = [ heapdict ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue