about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorjfvillablanca <31008330+jfvillablanca@users.noreply.github.com>2023-10-19 19:20:16 +0800
committerjfvillablanca <31008330+jfvillablanca@users.noreply.github.com>2023-10-19 19:20:16 +0800
commit2fec70e76cd5f5e6067ee2d6f7500de4e53099dc (patch)
tree3f7caa16d41590feb81caa6bb4cc1d23f3cde148 /pkgs/development
parent4a2788ea2ad7f1607f272c829f37e79a396b4d1a (diff)
pythonPackages.types-click: init at 7.1.8
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/types-click/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/types-click/default.nix b/pkgs/development/python-modules/types-click/default.nix
new file mode 100644
index 0000000000000..78c99fe42808a
--- /dev/null
+++ b/pkgs/development/python-modules/types-click/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, setuptools
+}:
+
+let
+  pname = "types-click";
+  version = "7.1.8";
+in
+buildPythonPackage {
+  inherit pname version;
+  format = "pyproject";
+
+  src = fetchPypi {
+    inherit pname version;
+    hash = "sha256-tmBJaL5kAdxRYxHKUHCKCii6p6DLhA79dBLw27/04JI=";
+  };
+
+  nativeBuildInputs = [ setuptools ];
+
+  meta = with lib; {
+    description = "Collection of library stubs for Python, with static types";
+    homepage = "https://github.com/python/typeshed";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ jfvillablanca ];
+  };
+}