mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
python310Packages.crate: disable on unsupported Python releases
This commit is contained in:
parent
7c922af833
commit
e73c8f79e8
@ -3,7 +3,7 @@
|
||||
, buildPythonPackage
|
||||
, urllib3
|
||||
, geojson
|
||||
, isPy3k
|
||||
, pythonOlder
|
||||
, sqlalchemy
|
||||
, pytestCheckHook
|
||||
, pytz
|
||||
@ -13,7 +13,9 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "crate";
|
||||
version = "0.30.0";
|
||||
disabled = !isPy3k;
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
Loading…
Reference in New Issue
Block a user