mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
46 lines
809 B
Nix
46 lines
809 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, cython
|
|
, openems
|
|
, csxcad
|
|
, boost
|
|
, python-csxcad
|
|
, numpy
|
|
, h5py
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-openems";
|
|
version = openems.version;
|
|
format = "setuptools";
|
|
|
|
src = openems.src;
|
|
|
|
sourceRoot = "${src.name}/python";
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
boost
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
openems
|
|
csxcad
|
|
python-csxcad
|
|
numpy
|
|
h5py
|
|
];
|
|
|
|
setupPyBuildFlags = [ "-I${openems}/include" "-L${openems}/lib" "-R${openems}/lib" ];
|
|
pythonImportsCheck = [ "openEMS" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface to OpenEMS";
|
|
homepage = "http://openems.de/index.php/Main_Page.html";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ matthuszagh ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|