python3Packages.pepit: 0.3.2 -> 0.4.0

This commit is contained in:
Weijia Wang
2025-09-11 18:25:00 +02:00
parent 28b38f0f57
commit 5ee81fc09e

View File

@@ -13,16 +13,21 @@
buildPythonPackage rec {
pname = "pepit";
version = "0.3.2";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "PerformanceEstimation";
repo = "PEPit";
rev = version;
hash = "sha256-Gdymdfi0Iv9KXBNSbAEWGYIQ4k5EONnbyWs+99L5D/A=";
tag = version;
hash = "sha256-6HF/BkDFUvui7CaVfOeJUQhl3QLLyE7aabDWcZ4tgXc=";
};
postPatch = ''
substituteInPlace setup.py \
--replace-fail "{{VERSION_PLACEHOLDER}}" "${version}"
'';
build-system = [
setuptools
];