python3Packages.optype: 0.14.0 -> 0.15.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:19:43 +01:00
parent 452e020b9b
commit b5531bf9c4
@@ -11,19 +11,24 @@
pythonOlder,
}:
buildPythonPackage {
buildPythonPackage (finalAttrs: {
pname = "optype";
version = "0.14.0";
version = "0.15.0";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "jorenham";
repo = "optype";
rev = "5f16def3546222caf81a3411a27b007a00819172";
hash = "sha256-52cY+u0wjhJFQDLsjND/h6cfln4rCTtcy+HqaoH/re0=";
tag = "v${finalAttrs.version}";
hash = "sha256-tzbS+CeWGxMXK1LFN/LslI6kfbVQPjqYlDB7fX0ogfU=";
};
disabled = pythonOlder "3.11";
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "uv_build>=0.9.16,<0.10.0" uv_build
'';
build-system = [
uv-build
@@ -57,4 +62,4 @@ buildPythonPackage {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ jolars ];
};
}
})