diff options
| author | John Ericson <John.Ericson@Obsidian.Systems> | 2017-12-07 01:49:31 -0500 |
|---|---|---|
| committer | John Ericson <John.Ericson@Obsidian.Systems> | 2017-12-07 01:49:31 -0500 |
| commit | 3a59cd87f26cc59c91fb821749b1ec0d64922f87 (patch) | |
| tree | 52b8e0667bed6c00ea98e11b3fc325535f838a08 /pkgs/development/python-modules/python-uinput | |
| parent | 51948eab9415fde1825dea5c7d31b99b2e1a0fdb (diff) | |
| parent | 93cd0685c5ac4d8f21d8586d3e5c45cd7394fab9 (diff) | |
Merge commit '93cd0685c5ac4d8f21d8586d3e5c45cd7394fab9' into gcc-modernize-builder
Diffstat (limited to 'pkgs/development/python-modules/python-uinput')
| -rw-r--r-- | pkgs/development/python-modules/python-uinput/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-uinput/default.nix b/pkgs/development/python-modules/python-uinput/default.nix new file mode 100644 index 000000000000..326151a4843f --- /dev/null +++ b/pkgs/development/python-modules/python-uinput/default.nix @@ -0,0 +1,24 @@ +{ stdenv, buildPythonPackage, fetchPypi +, udev }: + +buildPythonPackage rec { + pname = "python-uinput"; + version = "0.11.2"; + name = "${pname}-${version}"; + + src = fetchPypi { + inherit pname version; + sha256 = "033zqiypjz0nigav6vz0s57pbzikvds55mxphrdpkdbpdikjnfcr"; + }; + + buildInputs = [ udev ]; + + NIX_CFLAGS_LINK = [ "-ludev" ]; + + meta = with stdenv.lib; { + description = "Pythonic API to Linux uinput kernel module"; + homepage = http://tjjr.fi/sw/python-uinput/; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ abbradar ]; + }; +} |
