python310Packages.crate: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-03-04 12:09:32 +01:00 committed by GitHub
parent 7c922af833
commit e73c8f79e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;