blob: 2a44d6903c944d6267d1e4ab61a5e57b83dc8996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
buildPythonPackage,
fetchPypi,
lib,
kicad,
versioneer,
}:
buildPythonPackage rec {
pname = "pcbnewtransition";
version = "0.5.2";
format = "setuptools";
src = fetchPypi {
inherit pname;
inherit version;
hash = "sha256-zLnvbu0G2mJKCHLCjbIKHBqSfdEyhR+1afkOFU++TfI=";
};
propagatedBuildInputs = [ kicad ];
nativeBuildInputs = [ versioneer ];
pythonImportsCheck = [ "pcbnewTransition" ];
meta = {
description = "Library that allows you to support both, KiCad 5, 6 and 7 in your plugins";
homepage = "https://github.com/yaqwsx/pcbnewTransition";
changelog = "https://github.com/yaqwsx/pcbnewTransition/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
jfly
matusf
];
};
}
|