python310Packages.py-partiql-parser: disable on unsupported Python releases
This commit is contained in:
parent
1689380ce7
commit
1a8298fbda
1 changed files with 4 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
, setuptools
|
, setuptools
|
||||||
, sure
|
, sure
|
||||||
}:
|
}:
|
||||||
|
@ -10,7 +11,9 @@
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "py-partiql-parser";
|
pname = "py-partiql-parser";
|
||||||
version = "0.3.8";
|
version = "0.3.8";
|
||||||
format = "pyproject";
|
pyproject = true;
|
||||||
|
|
||||||
|
disable = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "getmoto";
|
owner = "getmoto";
|
||||||
|
|
Loading…
Reference in a new issue