summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-02-14 23:27:10 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-02-14 23:27:10 +0100
commit75a3c2b9eea32398f7cc865b6facb3c80cddebfe (patch)
tree3cef5647414f8374c8c3e44c98a15c5727d6c8c9
parenta023ae01ccbe652b477e2bce596cc23ad3f9e00f (diff)
downloadnixpkgs-75a3c2b9eea32398f7cc865b6facb3c80cddebfe.tar
nixpkgs-75a3c2b9eea32398f7cc865b6facb3c80cddebfe.tar.gz
nixpkgs-75a3c2b9eea32398f7cc865b6facb3c80cddebfe.tar.bz2
nixpkgs-75a3c2b9eea32398f7cc865b6facb3c80cddebfe.tar.lz
nixpkgs-75a3c2b9eea32398f7cc865b6facb3c80cddebfe.tar.xz
nixpkgs-75a3c2b9eea32398f7cc865b6facb3c80cddebfe.tar.zst
nixpkgs-75a3c2b9eea32398f7cc865b6facb3c80cddebfe.zip
circup: init at 1.0.3
-rw-r--r--pkgs/development/tools/circup/default.nix52
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 54 insertions, 0 deletions
diff --git a/pkgs/development/tools/circup/default.nix b/pkgs/development/tools/circup/default.nix
new file mode 100644
index 00000000000..d0e727d0af2
--- /dev/null
+++ b/pkgs/development/tools/circup/default.nix
@@ -0,0 +1,52 @@
+{ lib
+, fetchFromGitHub
+, python3
+}:
+
+python3.pkgs.buildPythonApplication rec {
+  pname = "circup";
+  version = "1.0.3";
+  format = "setuptools";
+
+  src = fetchFromGitHub {
+    owner = "adafruit";
+    repo = pname;
+    rev = version;
+    hash = "sha256-1UNruZgA7Z0G1t3GLffiA/p+gjPYBPpdn5QqQk6D/o0=";
+  };
+
+  SETUPTOOLS_SCM_PRETEND_VERSION = version;
+
+  nativeBuildInputs = with python3.pkgs; [
+    setuptools-scm
+  ];
+
+  propagatedBuildInputs = with python3.pkgs; [
+    appdirs
+    click
+    findimports
+    requests
+    semver
+    setuptools
+    update_checker
+  ];
+
+  checkInputs = with python3.pkgs; [
+    pytestCheckHook
+  ];
+
+  postBuild = ''
+    export HOME=$(mktemp -d);
+  '';
+
+  pythonImportsCheck = [
+    " circup "
+  ];
+
+  meta = with lib; {
+    description = "CircuitPython library updater";
+    homepage = "https://github.com/adafruit/circup";
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ fab ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 70a1cad5fb4..2a76a830f97 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4382,6 +4382,8 @@ with pkgs;
 
   checkmate = callPackage ../development/tools/checkmate { };
 
+  circup = callPackage ../development/tools/circup { };
+
   civetweb = callPackage ../development/libraries/civetweb { };
 
   ckb-next = libsForQt5.callPackage ../tools/misc/ckb-next { };