Skip to content

Commit

Permalink
easyeda2kicad: init at 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ChocolateLoverRaj committed Oct 29, 2024
1 parent 8a66f4f commit 0cc1465
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/ea/easyeda2kicad/package.nix
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";
};
}

0 comments on commit 0cc1465

Please sign in to comment.