Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-csxcad / default.nix
blobb7dc56ed27746301ac04d2170d0e9ae6139dbb2d
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , cython
5 , openems
6 , csxcad
7 , numpy
8 , matplotlib
9 }:
11 buildPythonPackage rec {
12   pname = "python-csxcad";
13   version = csxcad.version;
14   format = "setuptools";
16   src = csxcad.src;
18   sourceRoot = "${src.name}/python";
20   nativeBuildInputs = [
21     cython
22   ];
24   propagatedBuildInputs = [
25     openems
26     csxcad
27     numpy
28     matplotlib
29   ];
31   setupPyBuildFlags = [ "-I${openems}/include" "-L${openems}/lib" "-R${openems}/lib" ];
33   meta = with lib; {
34     description = "Python interface to CSXCAD";
35     homepage = "http://openems.de/index.php/Main_Page.html";
36     license = licenses.gpl3;
37     maintainers = with maintainers; [ matthuszagh ];
38     platforms = platforms.linux;
39   };