about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorurlordjames <32751441+urlordjames@users.noreply.github.com>2021-07-20 22:31:06 -0400
committerGitHub <noreply@github.com>2021-07-20 22:31:06 -0400
commit4711f4b61ef436425252fb74a1f81f95bcd601b3 (patch)
tree0816f394ff4262c55fe2315445a01277e0b05156 /pkgs/development
parent5d55727b303bc4256281e9e45af07a42f962aa4b (diff)
pythonPackages.teletype: init at 1.1.0 (#130871)
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/teletype/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/teletype/default.nix b/pkgs/development/python-modules/teletype/default.nix
new file mode 100644
index 0000000000000..c3878bf3c8779
--- /dev/null
+++ b/pkgs/development/python-modules/teletype/default.nix
@@ -0,0 +1,22 @@
+{ buildPythonPackage, fetchPypi, lib }:
+
+buildPythonPackage rec {
+  pname = "teletype";
+  version = "1.1.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "02mg0qmdf7hljq6jw1hwaid3hvkf70dfxgrxmpqybaxrph5pfg1y";
+  };
+
+  # no tests
+  doCheck = false;
+  pythonImportsCheck = [ "teletype" ];
+
+  meta = with lib; {
+    description = "A high-level cross platform tty library";
+    homepage = "https://github.com/jkwill87/teletype";
+    license = licenses.mit;
+    maintainers = with maintainers; [ urlordjames ];
+  };
+}