depot/third_party/nixpkgs/pkgs/development/python-modules/kinparse/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

38 lines
734 B
Nix

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