about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-04-28 22:32:57 +0200
committerGitHub <noreply@github.com>2024-04-28 22:32:57 +0200
commit22c650c1855bc3f0684f89a3ebaed7f533385cd0 (patch)
tree2c3c6234bd74d2a9b4bec100cf4f9c3ffe573c06 /pkgs/development
parent06eef1a9788e82b5a959505c8add80782c038751 (diff)
parent9d39bb6cddfc879e19435885bbc583948e64f074 (diff)
Merge pull request #307492 from Stunkymonkey/python311Packages-pymc-fix-setuptools
python311Packages.pymc: fix setuptools
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/pymc/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pymc/default.nix b/pkgs/development/python-modules/pymc/default.nix
index 16aa22cf7fff0..f8b3e637e0f1f 100644
--- a/pkgs/development/python-modules/pymc/default.nix
+++ b/pkgs/development/python-modules/pymc/default.nix
@@ -10,6 +10,7 @@
 , pythonOlder
 , scipy
 , typing-extensions
+, setuptools
 }:
 
 buildPythonPackage rec {
@@ -26,6 +27,10 @@ buildPythonPackage rec {
     hash = "sha256-tiOXbryY2TmeBVrG5cIMeDJ4alolBQ5LosdfH3tpVOA=";
   };
 
+  build-system = [
+    setuptools
+  ];
+
   postPatch = ''
     substituteInPlace setup.py \
       --replace-fail ', "pytest-cov"' ""