13 lines
440 B
Nix
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 ];
|
|
}
|