about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyinputevent
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-26 09:49:50 -0400
committerFrederik Rietdijk <fridh@fridh.nl>2018-10-27 09:07:20 +0200
commitcd3b84706b988b3a39419923389c67cfc81e1386 (patch)
treef216556c27609182de0df4140cba425331fe9c3c /pkgs/development/python-modules/pyinputevent
parentbf25d0a9884ffd0d0a8074eeb5c52fcd353a6960 (diff)
pythonPackages.pyinputevent: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/pyinputevent')
-rw-r--r--pkgs/development/python-modules/pyinputevent/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyinputevent/default.nix b/pkgs/development/python-modules/pyinputevent/default.nix
new file mode 100644
index 0000000000000..4709cf0d1167b
--- /dev/null
+++ b/pkgs/development/python-modules/pyinputevent/default.nix
@@ -0,0 +1,24 @@
+{ stdenv
+, buildPythonPackage
+, fetchFromGitHub
+}:
+
+buildPythonPackage rec {
+  name = "pyinputevent";
+  version = "2016-10-18";
+
+  src = fetchFromGitHub {
+    owner = "ntzrmtthihu777";
+    repo = "pyinputevent";
+    rev = "d2075fa5db5d8a402735fe788bb33cf9fe272a5b";
+    sha256 = "0rkis0xp8f9jc00x7jb9kbvhdla24z1vl30djqa6wy6fx0cr6sib";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/ntzrmtthihu777/pyinputevent";
+    description = "Python interface to the Input Subsystem's input_event and uinput";
+    license = licenses.bsd3;
+    platforms = platforms.linux;
+  };
+
+}