Files
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

43 lines
728 B
Nix

{
lib,
buildPythonPackage,
cython,
openems,
csxcad,
numpy,
matplotlib,
}:
buildPythonPackage rec {
pname = "python-csxcad";
version = csxcad.version;
format = "setuptools";
src = csxcad.src;
sourceRoot = "${src.name}/python";
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [
openems
csxcad
numpy
matplotlib
];
setupPyBuildFlags = [
"-I${openems}/include"
"-L${openems}/lib"
"-R${openems}/lib"
];
meta = {
description = "Python interface to CSXCAD";
homepage = "http://openems.de/index.php/Main_Page.html";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ matthuszagh ];
platforms = lib.platforms.linux;
};
}