5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
setuptools,
|
|
click,
|
|
numpy,
|
|
scipy,
|
|
rtree,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gerbonara";
|
|
version = "1.4.0";
|
|
src = fetchFromGitHub {
|
|
owner = "jaseg";
|
|
repo = "gerbonara";
|
|
rev = "v${version}";
|
|
hash = "sha256-SwXoCA9ru5VgH4geKUDgdcPrgEYgNoVwNb5YUBAcXlo=";
|
|
};
|
|
|
|
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 = with lib; {
|
|
description = "Pythonic library for reading/modifying/writing Gerber/Excellon/IPC-356 files";
|
|
mainProgram = "gerbonara";
|
|
homepage = "https://github.com/jaseg/gerbonara";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ wulfsta ];
|
|
};
|
|
}
|