python3Packages.sdds: fix build (#513206)

This commit is contained in:
Sandro
2026-04-24 23:57:16 +00:00
committed by GitHub
@@ -4,12 +4,13 @@
fetchFromGitHub,
numpy,
pytestCheckHook,
hatchling,
}:
buildPythonPackage rec {
pname = "sdds";
version = "0.4.3";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "pylhc";
@@ -18,7 +19,9 @@ buildPythonPackage rec {
hash = "sha256-2lsim4FlOKBZ4Lk/iKIcItE/hvqiAK4XTkoxm52At/8=";
};
propagatedBuildInputs = [ numpy ];
build-system = [ hatchling ];
dependencies = [ numpy ];
nativeCheckInputs = [ pytestCheckHook ];