mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
python3Packages.skidl: init at unstable-2020-09-15
This commit is contained in:
parent
14154fea52
commit
98e8064735
46
pkgs/development/python-modules/skidl/default.nix
Normal file
46
pkgs/development/python-modules/skidl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -6542,6 +6542,8 @@ in {
|
||||
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 { };
|
||||
|
||||
skorch = callPackage ../development/python-modules/skorch { };
|
||||
|
Loading…
Reference in New Issue
Block a user