567e8dfd8e
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>
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
setuptools,
|
|
click,
|
|
numpy,
|
|
scipy,
|
|
rtree,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gerbonara";
|
|
version = "1.5.0";
|
|
src = fetchFromGitHub {
|
|
owner = "jaseg";
|
|
repo = "gerbonara";
|
|
rev = "v${version}";
|
|
hash = "sha256-yxSZuBw93wqIAw1wke80Vy/dtBcQwpQ2tQ1nwXdWi4k=";
|
|
};
|
|
|
|
format = "setuptools";
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
numpy
|
|
scipy
|
|
rtree
|
|
];
|
|
|
|
preConfigure = ''
|
|
# setup.py tries to execute a call to git in a subprocess, this avoids it.
|
|
substituteInPlace setup.py \
|
|
--replace "version=version()," \
|
|
"version='${version}',"
|
|
'';
|
|
|
|
pythonImportsCheck = [ "gerbonara" ];
|
|
|
|
# Test environment is exceptionally tricky to get set up, so skip for now.
|
|
doCheck = false;
|
|
|
|
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
|
|
|
|
meta = {
|
|
description = "Pythonic library for reading/modifying/writing Gerber/Excellon/IPC-356 files";
|
|
mainProgram = "gerbonara";
|
|
homepage = "https://github.com/jaseg/gerbonara";
|
|
license = with lib.licenses; [ asl20 ];
|
|
maintainers = with lib.maintainers; [ wulfsta ];
|
|
};
|
|
}
|