mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python3Packages.kinparse: init at unstable-2019-12-18
This commit is contained in:
parent
f21c42143b
commit
2c71cf337a
38
pkgs/development/python-modules/kinparse/default.nix
Normal file
38
pkgs/development/python-modules/kinparse/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -930,6 +930,8 @@ in {
|
||||
|
||||
kconfiglib = callPackage ../development/python-modules/kconfiglib { };
|
||||
|
||||
kinparse = callPackage ../development/python-modules/kinparse { };
|
||||
|
||||
labelbox = callPackage ../development/python-modules/labelbox { };
|
||||
|
||||
lammps-cython = callPackage ../development/python-modules/lammps-cython {
|
||||
|
Loading…
Reference in New Issue
Block a user