mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
Merge pull request #307492 from Stunkymonkey/python311Packages-pymc-fix-setuptools
python311Packages.pymc: fix setuptools
This commit is contained in:
commit
22c650c185
@ -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"' ""
|
||||
|
Loading…
Reference in New Issue
Block a user