6 , buildPythonApplication
23 solidpython = callPackage ./solidpython { };
25 buildPythonApplication rec {
28 format = "setuptools";
30 disabled = pythonOlder "3.7";
32 src = fetchFromGitHub {
35 rev = "refs/tags/v${version}";
36 hash = "sha256-r8LQcy3I6hmcrU/6HfPAYJd+cEZdhad6DUldC9HvXZU=";
39 propagatedBuildInputs = [
44 # OpenSCAD is an optional dependency (see
45 # https://github.com/yaqwsx/KiKit/blob/v1.5.0/docs/installation/intro.md#optional-dependencies).
48 # https://github.com/yaqwsx/KiKit/issues/575
53 # https://github.com/yaqwsx/KiKit/issues/576
68 pythonImportsCheck = [
73 export PATH=$PATH:$out/bin
77 # pytest needs to run in a subdir. See https://github.com/yaqwsx/KiKit/blob/v1.3.0/Makefile#L43
82 description = "Automation for KiCAD boards";
83 homepage = "https://github.com/yaqwsx/KiKit/";
84 changelog = "https://github.com/yaqwsx/KiKit/releases/tag/v${version}";
85 maintainers = with maintainers; [ jfly matusf ];
86 license = licenses.mit;