python310Packages.py-partiql-parser: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-10-15 09:33:03 +02:00 committed by GitHub
parent 1689380ce7
commit 1a8298fbda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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