about summary refs log tree commit diff
path: root/pkgs/development/python-modules/types-colorama/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/types-colorama/default.nix')
-rw-r--r--pkgs/development/python-modules/types-colorama/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/types-colorama/default.nix b/pkgs/development/python-modules/types-colorama/default.nix
new file mode 100644
index 000000000000..52877881296a
--- /dev/null
+++ b/pkgs/development/python-modules/types-colorama/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "types-colorama";
+  version = "0.4.15";
+  format = "setuptools";
+
+  src = fetchPypi {
+    inherit pname version;
+    hash = "sha256-/RKLHjLz/s7F8J30Nm0hSY7obqMfz4tOjxrebQu/mDI=";
+  };
+
+  # Module has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Typing stubs for colorama";
+    homepage = "https://github.com/python/typeshed";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ fab ];
+  };
+}