-
-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a66f4f
commit 0cc1465
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
python3Packages, | ||
pythonPackages, | ||
lib, | ||
}: | ||
|
||
python3Packages.buildPythonPackage rec { | ||
pname = "easyeda2kicad"; | ||
version = "0.8.0"; | ||
|
||
src = python3Packages.fetchPypi { | ||
inherit pname version; | ||
hash = "sha256-p4G+bRB29uBohqQpI3PrkwyZId5McJ1t2Ru26hBPSks="; | ||
}; | ||
|
||
dependencies = with python3Packages; [ | ||
setuptools | ||
pydantic | ||
requests | ||
]; | ||
|
||
meta = with lib; { | ||
description = "Convert any LCSC components (including EasyEDA) to KiCad library"; | ||
homepage = "https://github.com/uPesy/easyeda2kicad.py"; | ||
license = licenses.agpl3Only; | ||
maintainers = with maintainers; [ ChocolateLoverRaj ]; | ||
mainProgram = "easyeda2kicad"; | ||
}; | ||
} |