Merge pull request #13678 from therealpxc/ds4drv

ds4drv: init at 0.5.0
This commit is contained in:
joachifm 2016-03-05 12:11:28 +00:00
commit 5eb0613634

View file

@ -5053,6 +5053,27 @@ in modules // {
};
};
ds4drv = buildPythonPackage rec {
name = "ds4drv-${version}";
version = "0.5.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/d/ds4drv/${name}.tar.gz";
sha256 = "0dq2z1z09zxa6rn3v94vwqaaz29jwiydkss8hbjglixf20krmw3b";
};
propagatedBuildInputs = with self; [ evdev pyudev ];
buildInputs = [ pkgs.bluez ];
meta = {
description = "Userspace driver for the DualShock 4 controller";
homepage = "https://github.com/chrippa/ds4drv";
license = licenses.mit;
};
};
dyn = buildPythonPackage rec {
version = "1.5.0";
name = "dyn-${version}";