python3Packages.uhi: 0.4.0 -> 0.5.0

This commit is contained in:
Martin Weinelt
2025-01-27 10:57:48 +01:00
parent 311b591221
commit d506dc3954
@@ -4,26 +4,30 @@
buildPythonPackage,
hatchling,
hatch-vcs,
fastjsonschema,
numpy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "uhi";
version = "0.4.0";
format = "pyproject";
version = "0.5.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-DctrGXdQh9OKMe44jLLHDy7P4ExP/iymMiNBDK5b7vo=";
hash = "sha256-lVm78vOPGKL8HY9zE5OWBo+I+JjWqa/IMyB+wP1Zoxw=";
};
buildInputs = [
build-system = [
hatchling
hatch-vcs
];
propagatedBuildInputs = [ numpy ];
dependencies = [
fastjsonschema
numpy
];
checkInputs = [ pytestCheckHook ];