python311Packages.gerbonara: 1.2.0 -> 1.4.0 (#326208)

This commit is contained in:
Luke V 2024-07-13 10:10:54 -04:00 committed by GitHub
parent a4542568da
commit 9a097c2e4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
gitUpdater,
setuptools,
pytest,
click,
@ -12,12 +13,12 @@
buildPythonPackage rec {
pname = "gerbonara";
version = "1.2.0";
version = "1.4.0";
src = fetchFromGitHub {
owner = "jaseg";
repo = "gerbonara";
rev = "v${version}";
hash = "sha256-VU4Of90YUPoLuiUpIDwSUfxQOoKChNbZE0klHkHEmaY=";
hash = "sha256-SwXoCA9ru5VgH4geKUDgdcPrgEYgNoVwNb5YUBAcXlo=";
};
format = "setuptools";
@ -43,6 +44,8 @@ buildPythonPackage rec {
# 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";