Merge pull request #128658 from dotlambda/skidl-1.0.0

python3Packages.skidl: unstable-2020-09-15 -> 1.0.0

authored by

Sandro and committed by
GitHub
0293e3e4 593494c2

+5 -13
+5 -13
pkgs/development/python-modules/skidl/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , requests 5 4 , future 6 5 , kinparse 7 - , enum34 8 6 , pyspice 9 7 , graphviz 10 - , pillow 11 - , cffi 12 8 }: 13 9 14 10 buildPythonPackage rec { 15 11 pname = "skidl"; 16 - version = "unstable-2020-09-15"; 12 + version = "1.0.0"; 17 13 18 14 src = fetchFromGitHub { 19 15 owner = "xesscorp"; 20 16 repo = "skidl"; 21 - rev = "551bdb92a50c0894b0802c0a89b4cb62a5b4038f"; 22 - sha256 = "1g65cyxpkqshgsggav2q3f76rbj5pzh7sacyhmhzvfz4zfarkcxk"; 17 + rev = version; 18 + sha256 = "1m0hllvmr5nkl4zy8yyzfgw9zmbrrzd5pw87ahd2mq68fjpcaqq5"; 23 19 }; 24 20 25 21 propagatedBuildInputs = [ 26 - requests 27 22 future 28 23 kinparse 29 - enum34 30 24 pyspice 31 25 graphviz 32 - pillow 33 - cffi 34 26 ]; 35 27 36 28 # Checks require availability of the kicad symbol libraries. ··· 38 30 pythonImportsCheck = [ "skidl" ]; 39 31 40 32 meta = with lib; { 41 - description = "SKiDL is a module that extends Python with the ability to design electronic circuits"; 42 - homepage = "https://xesscorp.github.io/skidl/docs/_site/"; 33 + description = "Module that extends Python with the ability to design electronic circuits"; 34 + homepage = "https://xess.com/skidl/docs/_site/"; 43 35 license = licenses.mit; 44 36 maintainers = with maintainers; [ matthuszagh ]; 45 37 };