about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-31 18:33:41 +0100
committerGitHub <noreply@github.com>2021-01-31 18:33:41 +0100
commit09feb4b90a55b2a401a88df4d6ea0a15ff116335 (patch)
tree72808d8ead31772a6116035c4f4a36f5a350740e /pkgs/development
parent51f74e3cb70998d249867a0a2b67e810dd749558 (diff)
parent5a6f18aa8e00266e1d32a58d868f9d05ee647227 (diff)
Merge pull request #111157 from jollheef/npyscreen
python3Packages.npyscreen: init at 4.10.5
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/npyscreen/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/npyscreen/default.nix b/pkgs/development/python-modules/npyscreen/default.nix
new file mode 100644
index 0000000000000..1e93d54b3a298
--- /dev/null
+++ b/pkgs/development/python-modules/npyscreen/default.nix
@@ -0,0 +1,21 @@
+{ lib, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "npyscreen";
+  version = "4.10.5";
+
+  src = fetchPypi {
+   inherit pname version;
+   sha256 = "0vhjwn0dan3zmffvh80dxb4x67jysvvf1imp6pk4dsfslpwy0bk2";
+  };
+
+  # Tests are outdated
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Framework for developing console applications using Python and curses";
+    homepage = "http://www.npcole.com/npyscreen/";
+    maintainers = with maintainers; [ dump_stack ];
+    license = licenses.bsd3;
+  };
+}