python3Packages.cadwyn: 5.6.1 -> 6.0.1

https://github.com/zmievsa/cadwyn/releases/tag/6.0.1
This commit is contained in:
Martin Weinelt
2026-02-01 17:41:05 +01:00
parent ce07594d02
commit 45cc76d7f9
@@ -25,16 +25,16 @@
pythonAtLeast,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "cadwyn";
version = "5.6.1";
format = "pyproject";
version = "6.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "zmievsa";
repo = "cadwyn";
tag = version;
hash = "sha256-VVi79c/Y1mu520H/7gy9lGdBIVuKsYedU49P501NQao=";
tag = finalAttrs.version;
hash = "sha256-wvwR4JCPvWoWSdkK61oDmQWNq2UnDZMRlWxo1GLznjk=";
};
disabled = pythonAtLeast "3.14";
@@ -69,8 +69,8 @@ buildPythonPackage rec {
meta = {
description = "Production-ready community-driven modern Stripe-like API versioning in FastAPI";
homepage = "https://github.com/zmievsa/cadwyn";
changelog = "https://github.com/zmievsa/cadwyn/releases/tag/${version}";
changelog = "https://github.com/zmievsa/cadwyn/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ taranarmo ];
};
}
})