about summary refs log tree commit diff
path: root/pkgs/development/python-modules/py-partiql-parser
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-10-15 09:33:03 +0200
committerGitHub <noreply@github.com>2023-10-15 09:33:03 +0200
commit1a8298fbdac856730a23026ecb0aa3aac3e18753 (patch)
tree835d158dba0923d991474bae3da2522d50de403d /pkgs/development/python-modules/py-partiql-parser
parent1689380ce74d1757aa83351ade17bb244209441d (diff)
python310Packages.py-partiql-parser: disable on unsupported Python releases
Diffstat (limited to 'pkgs/development/python-modules/py-partiql-parser')
-rw-r--r--pkgs/development/python-modules/py-partiql-parser/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/py-partiql-parser/default.nix b/pkgs/development/python-modules/py-partiql-parser/default.nix
index 42ad0c8dbf6c6..6a64a439b0ac0 100644
--- a/pkgs/development/python-modules/py-partiql-parser/default.nix
+++ b/pkgs/development/python-modules/py-partiql-parser/default.nix
@@ -3,6 +3,7 @@
 , fetchFromGitHub
 , nix-update-script
 , pytestCheckHook
+, pythonOlder
 , setuptools
 , sure
 }:
@@ -10,7 +11,9 @@
 buildPythonPackage rec {
   pname = "py-partiql-parser";
   version = "0.3.8";
-  format = "pyproject";
+  pyproject = true;
+
+  disable = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "getmoto";