My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/skidl/default.nix

38 lines
779 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, future
, kinparse
, pyspice
, graphviz
}:
buildPythonPackage rec {
pname = "skidl";
version = "1.0.0";
src = fetchFromGitHub {
owner = "xesscorp";
repo = "skidl";
rev = version;
sha256 = "1m0hllvmr5nkl4zy8yyzfgw9zmbrrzd5pw87ahd2mq68fjpcaqq5";
};
propagatedBuildInputs = [
future
kinparse
pyspice
graphviz
];
# Checks require availability of the kicad symbol libraries.
doCheck = false;
pythonImportsCheck = [ "skidl" ];
meta = with lib; {
description = "Module that extends Python with the ability to design electronic circuits";
homepage = "https://xess.com/skidl/docs/_site/";
license = licenses.mit;
maintainers = with maintainers; [ matthuszagh ];
};
}