python313Packages.atopile-easy2kicad: init at 0.9.4

Changed files
+47
pkgs
development
python-modules
atopile-easyeda2kicad
top-level
+45
pkgs/development/python-modules/atopile-easyeda2kicad/default.nix
···
+
{
+
lib,
+
buildPythonPackage,
+
fetchFromGitHub,
+
hatchling,
+
hatch-vcs,
+
pydantic,
+
requests,
+
}:
+
+
buildPythonPackage rec {
+
pname = "atopile-easyeda2kicad";
+
version = "0.9.4";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "atopile";
+
repo = "easyeda2kicad.py";
+
tag = "v${version}";
+
hash = "sha256-pdP91tWeyQWh9ow02EXA2XIUsaexitX1R/OeyFQJ9vI=";
+
};
+
+
build-system = [
+
hatchling
+
hatch-vcs
+
];
+
+
dependencies = [
+
pydantic
+
requests
+
];
+
+
pythonImportsCheck = [ "easyeda2kicad" ];
+
+
doCheck = false; # no tests
+
+
meta = {
+
description = "Convert any LCSC components (including EasyEDA) to KiCad library";
+
homepage = "https://github.com/atopile/easyeda2kicad.py";
+
changelog = "https://github.com/atopile/easyeda2kicad.py/releases/tag/v${version}";
+
license = lib.licenses.agpl3Only;
+
maintainers = with lib.maintainers; [ sigmanificient ];
+
mainProgram = "easyeda2kicad";
+
};
+
}
+2
pkgs/top-level/python-packages.nix
···
atopile = callPackage ../development/python-modules/atopile { };
+
atopile-easyeda2kicad = callPackage ../development/python-modules/atopile-easyeda2kicad { };
+
atproto = callPackage ../development/python-modules/atproto { };
atpublic = callPackage ../development/python-modules/atpublic { };