nix-overlay/pkgs/development/python-modules/pysdf/default.nix

14 lines
445 B
Nix
Raw Normal View History

2023-02-09 23:33:14 +03:00
{ buildPythonPackage, fetchFromGitHub, python3Packages }:
buildPythonPackage {
format = "pyproject";
pname = "pysdf";
version = "0.4";
src = fetchFromGitHub {
2023-02-10 10:58:54 +03:00
owner = "FirefoxMetzger";
2023-02-09 23:33:14 +03:00
repo = "python-sdformat";
2023-02-10 10:58:54 +03:00
rev = "51cd5fcb970076f0b64b76938f7923000c8df404";
sha256 = "sha256-f30rfdvqxB6HE6hDJbthSv679JO6muAHhhVVes/AK3k=";
2023-02-09 23:33:14 +03:00
};
propagatedBuildInputs = with python3Packages; [ poetry-core lxml numpy pytest black ];
}