aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/colorama/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/colorama/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/colorama/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/colorama/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/colorama/default.nix
new file mode 100644
index 000000000000..d22f93d47f17
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/colorama/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchPypi, buildPythonPackage }:
+
+buildPythonPackage rec {
+ pname = "colorama";
+ version = "0.4.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "e96da0d330793e2cb9485e9ddfd918d456036c7149416295932478192f4436a1";
+ };
+
+ # No tests in archive
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/tartley/colorama";
+ license = licenses.bsd3;
+ description = "Cross-platform colored terminal text";
+ };
+}
+