nix-overlay/pkgs/development/python-modules/pysdf/default.nix
2023-02-09 23:33:14 +03:00

13 lines
440 B
Nix

{ buildPythonPackage, fetchFromGitHub, python3Packages }:
buildPythonPackage {
format = "pyproject";
pname = "pysdf";
version = "0.4";
src = fetchFromGitHub {
owner = "movefasta";
repo = "python-sdformat";
rev = "edfa3bdb97598c11d83bd5d9473db12ef645a478";
sha256 = "sha256-4IuljqprFK15B356Iuibz1pphvQWkrtvLsqTntuTB/o=";
};
propagatedBuildInputs = with python3Packages; [ poetry-core lxml numpy pytest black ];
}