python3Packages.safety-schemas: 0.0.19 -> 0.0.20 (#555607)

This commit is contained in:
Fabian Affolter
2026-08-23 15:32:06 +00:00
committed by GitHub

View File

@@ -10,15 +10,15 @@
typing-extensions,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "safety-schemas";
version = "0.0.19";
version = "0.0.20";
pyproject = true;
src = fetchPypi {
pname = "safety_schemas";
inherit version;
hash = "sha256-R4HwbUhSpPKLlo+OxmqagnxbAtJXBUIQoMIILIy3qo0=";
inherit (finalAttrs) version;
hash = "sha256-D9FHrnxlyLucCGEo9VHuhPrzEUALYQmmTkyiQSCw5WM=";
};
postPatch = ''
@@ -51,4 +51,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
})