python3Packages.pytest-resource-path: 1.4.1 -> 1.5.0 (#523888)

This commit is contained in:
Fabian Affolter 2026-05-25 11:12:53 +00:00 committed by GitHub
commit 7e18ec5706
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,16 +8,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pytest-resource-path";
version = "1.4.1";
version = "1.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "yukihiko-shinoda";
repo = "pytest-resource-path";
tag = "v${version}";
hash = "sha256-f0jN6V6tQRbr/DHOKKTrFCb1EBUUxZAQRckMy2iiVqI=";
tag = "v${finalAttrs.version}";
hash = "sha256-Y/mB5Gmkt3Rt8rRBOFZrWIREnpEiSxf/MChqymXDNws=";
};
build-system = [ setuptools ];
@ -36,4 +36,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})