initial commit
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 3s

This commit is contained in:
sid 2026-02-23 20:34:35 +01:00
commit 95a533c876
451 changed files with 18255 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{
lib,
python3,
fetchPypi,
}:
python3.pkgs.buildPythonApplication rec {
pname = "kicad-skip";
version = "0.2.5";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-3GtHIV2h6C8syFZ/Dx6OWsgpf14ZQdlnGS4EM4DgjIM=";
};
build-system = [
python3.pkgs.setuptools
];
dependencies = with python3.pkgs; [
sexpdata
];
pythonImportsCheck = [
"kicad_skip"
];
meta = {
description = "A friendly way to skip the drudgery and manipulate kicad 7+ s-expression schematic, netlist and PCB files";
homepage = "https://pypi.org/project/kicad-skip/";
license = lib.licenses.lgpl21Only;
mainProgram = "kicad-skip";
};
}