python3Packages.skidl: init at unstable-2020-09-15

This commit is contained in:
Matt Huszagh 2020-10-05 09:58:20 -07:00 committed by Jon
parent 14154fea52
commit 98e8064735
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, future
, kinparse
, enum34
, pyspice
, graphviz
, pillow
, cffi
}:
buildPythonPackage rec {
pname = "skidl";
version = "unstable-2020-09-15";
src = fetchFromGitHub {
owner = "xesscorp";
repo = "skidl";
rev = "551bdb92a50c0894b0802c0a89b4cb62a5b4038f";
sha256 = "1g65cyxpkqshgsggav2q3f76rbj5pzh7sacyhmhzvfz4zfarkcxk";
};
propagatedBuildInputs = [
requests
future
kinparse
enum34
pyspice
graphviz
pillow
cffi
];
# Checks require availability of the kicad symbol libraries.
doCheck = false;
pythonImportsCheck = [ "skidl" ];
meta = with lib; {
description = "SKiDL is a module that extends Python with the ability to design electronic circuits";
homepage = "https://xesscorp.github.io/skidl/docs/_site/";
license = licenses.mit;
maintainers = with maintainers; [ matthuszagh ];
};
}

View file

@ -6542,6 +6542,8 @@ in {
jre = pkgs.jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 jre = pkgs.jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
}; };
skidl = callPackage ../development/python-modules/skidl { };
sklearn-deap = callPackage ../development/python-modules/sklearn-deap { }; sklearn-deap = callPackage ../development/python-modules/sklearn-deap { };
skorch = callPackage ../development/python-modules/skorch { }; skorch = callPackage ../development/python-modules/skorch { };