Unverified Commit e73c8f79 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.crate: disable on unsupported Python releases

parent 7c922af8
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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;