python3Packages.sdds: fix build

This commit is contained in:
Sigmanificient
2026-04-25 00:44:00 +02:00
parent 7e72886296
commit 6d779d654d
@@ -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 ];