Merge pull request #128658 from dotlambda/skidl-1.0.0

python3Packages.skidl: unstable-2020-09-15 -> 1.0.0
This commit is contained in:
Sandro 2021-07-01 01:57:41 +02:00 committed by GitHub
commit 0293e3e473
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,36 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, future
, kinparse
, enum34
, pyspice
, graphviz
, pillow
, cffi
}:
buildPythonPackage rec {
pname = "skidl";
version = "unstable-2020-09-15";
version = "1.0.0";
src = fetchFromGitHub {
owner = "xesscorp";
repo = "skidl";
rev = "551bdb92a50c0894b0802c0a89b4cb62a5b4038f";
sha256 = "1g65cyxpkqshgsggav2q3f76rbj5pzh7sacyhmhzvfz4zfarkcxk";
rev = version;
sha256 = "1m0hllvmr5nkl4zy8yyzfgw9zmbrrzd5pw87ahd2mq68fjpcaqq5";
};
propagatedBuildInputs = [
requests
future
kinparse
enum34
pyspice
graphviz
pillow
cffi
];
# Checks require availability of the kicad symbol libraries.
@ -38,8 +30,8 @@ buildPythonPackage rec {
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/";
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 ];
};