Unverified Commit 238e099e authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

kikit: clean up & add updateScript and NGI team (#423141)

parents 48098793 014e1698
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@
  versioneer,
  shapely,
  setuptools,
  nix-update-script,
}:
let
  solidpython = callPackage ./solidpython { };
@@ -95,14 +96,17 @@ buildPythonApplication rec {
    cd test/units
  '';

  meta = with lib; {
  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Automation for KiCAD boards";
    homepage = "https://github.com/yaqwsx/KiKit/";
    changelog = "https://github.com/yaqwsx/KiKit/releases/tag/${src.tag}";
    maintainers = with maintainers; [
    maintainers = with lib.maintainers; [
      jfly
      matusf
    ];
    license = licenses.mit;
    teams = with lib.teams; [ ngi ];
    license = lib.licenses.mit;
  };
}