Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / skidl / default.nix
blob2203dee0ca3f9abf7ab1a49e70f0b6be3f232a5e
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , future
5 , kinparse
6 , pyspice
7 , graphviz
8 }:
10 buildPythonPackage rec {
11   pname = "skidl";
12   version = "1.0.0";
13   format = "setuptools";
15   src = fetchFromGitHub {
16     owner = "xesscorp";
17     repo = "skidl";
18     rev = version;
19     sha256 = "1m0hllvmr5nkl4zy8yyzfgw9zmbrrzd5pw87ahd2mq68fjpcaqq5";
20   };
22   propagatedBuildInputs = [
23     future
24     kinparse
25     pyspice
26     graphviz
27   ];
29   # Checks require availability of the kicad symbol libraries.
30   doCheck = false;
31   pythonImportsCheck = [ "skidl" ];
33   meta = with lib; {
34     description = "Module that extends Python with the ability to design electronic circuits";
35     mainProgram = "netlist_to_skidl";
36     homepage = "https://xess.com/skidl/docs/_site/";
37     license = licenses.mit;
38     maintainers = with maintainers; [ matthuszagh ];
39   };