We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d12a583 commit 2c235c7Copy full SHA for 2c235c7
pkgs/development/python-modules/safety-schemas/default.nix
@@ -12,15 +12,20 @@
12
13
buildPythonPackage rec {
14
pname = "safety-schemas";
15
- version = "0.0.10";
+ version = "0.0.11";
16
pyproject = true;
17
18
src = fetchPypi {
19
pname = "safety_schemas";
20
inherit version;
21
- hash = "sha256-Xsg7sZ4XADdI0qSxHkPh8rRHHJQ0Mp6aDYDRBplmuWw=";
+ hash = "sha256-EIBDcuB3ylqV50DMUH5z2Rc2YyhABvyq9XVheboTrJ0=";
22
};
23
24
+ postPatch = ''
25
+ substituteInPlace pyproject.toml \
26
+ --replace hatchling==1.26.3 hatchling
27
+ '';
28
+
29
build-system = [ hatchling ];
30
31
pythonRelaxDeps = [
0 commit comments