Files
nixpkgs/pkgs/development/python-modules/kinparse/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

40 lines
795 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest,
future,
pyparsing,
}:
buildPythonPackage {
pname = "kinparse";
version = "unstable-2019-12-18";
format = "setuptools";
src = fetchFromGitHub {
owner = "xesscorp";
repo = "kinparse";
rev = "eeb3f346d57a67a471bdf111f39bef8932644481";
sha256 = "1nrjnybwzy93c79yylcwmb4lvkx7hixavnjwffslz0zwn32l0kx3";
};
doCheck = true;
pythonImportsCheck = [ "kinparse" ];
nativeCheckInputs = [ pytest ];
propagatedBuildInputs = [
future
pyparsing
];
meta = with lib; {
description = "Parser for KiCad EESCHEMA netlists";
mainProgram = "kinparse";
homepage = "https://github.com/xesscorp/kinparse";
license = licenses.mit;
maintainers = with maintainers; [ matthuszagh ];
};
}