about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aspell-python
diff options
context:
space:
mode:
authorTomaSajt <62384384+TomaSajt@users.noreply.github.com>2024-05-06 19:42:53 +0200
committerTomaSajt <62384384+TomaSajt@users.noreply.github.com>2024-05-07 18:46:41 +0200
commita06938af6bcb981295a79827cc5f7c05695919ad (patch)
treedc1d7ca8352b81520ce2d09d1e3f14d376c9a2d6 /pkgs/development/python-modules/aspell-python
parent7b091662e3e4387ce55ba21f3472452c7b1edd50 (diff)
python312Packages.aspell-python: use pyproject = true
Diffstat (limited to 'pkgs/development/python-modules/aspell-python')
-rw-r--r--pkgs/development/python-modules/aspell-python/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/aspell-python/default.nix b/pkgs/development/python-modules/aspell-python/default.nix
index 1af34b43fc291..1f66b49869e04 100644
--- a/pkgs/development/python-modules/aspell-python/default.nix
+++ b/pkgs/development/python-modules/aspell-python/default.nix
@@ -6,12 +6,13 @@
 , isPy27
 , pytestCheckHook
 , pythonAtLeast
+, setuptools
 }:
 
 buildPythonPackage rec {
   pname = "aspell-python";
   version = "1.15";
-  format = "setuptools";
+  pyproject = true;
 
   disabled = isPy27;
 
@@ -22,6 +23,10 @@ buildPythonPackage rec {
     hash = "sha256-IEKRDmQY5fOH9bQk0dkUAy7UzpBOoZW4cNtVvLMcs40=";
   };
 
+  build-system = [
+    setuptools
+  ];
+
   buildInputs = [
     aspell
   ];