Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pcbnewtransition / default.nix
blob956be1966b66fbac0ea17494c85de94915cd9d83
1 { pythonOlder
2 , buildPythonPackage
3 , fetchPypi
4 , lib
5 , kicad
6 , versioneer
7 }:
8 buildPythonPackage rec {
9   pname = "pcbnewtransition";
10   version = "0.4.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     pname = "pcbnewTransition";
17     inherit version;
18     hash = "sha256-+mRExuDuEYxSSlrkEjSyPK+RRJZo+YJH7WnUVfjblRQ=";
19   };
21   propagatedBuildInputs = [
22     kicad
23   ];
25   nativeBuildInputs = [
26     versioneer
27   ];
29   pythonImportsCheck = [
30     "pcbnewTransition"
31   ];
33   meta = with lib; {
34     description = "Library that allows you to support both, KiCad 5, 6 and 7 in your plugins";
35     homepage = "https://github.com/yaqwsx/pcbnewTransition";
36     changelog = "https://github.com/yaqwsx/pcbnewTransition/releases/tag/v${version}";
37     license = licenses.mit;
38     maintainers = with maintainers; [ jfly matusf ];
39   };