Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pyinputevent / default.nix
blob1d4f4cfa7847f92a2d67b1eb82407e46f500820f
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 }:
6 buildPythonPackage {
7   pname = "pyinputevent";
8   version = "2016-10-18";
10   src = fetchFromGitHub {
11     owner = "ntzrmtthihu777";
12     repo = "pyinputevent";
13     rev = "d2075fa5db5d8a402735fe788bb33cf9fe272a5b";
14     sha256 = "0rkis0xp8f9jc00x7jb9kbvhdla24z1vl30djqa6wy6fx0cr6sib";
15   };
17   meta = with lib; {
18     homepage = "https://github.com/ntzrmtthihu777/pyinputevent";
19     description = "Python interface to the Input Subsystem's input_event and uinput";
20     license = licenses.bsd3;
21     platforms = platforms.unix;
22   };