Unverified Commit e2f1d80a authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python3Packages.sdds: fix build (#513206)

parents 8eb7f1cf 6d779d65
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -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 ];