lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.bluepy-devices: init at 0.2.1

+31
+29
pkgs/development/python-modules/bluepy-devices/default.nix
··· 1 + { lib 2 + , bluepy 3 + , buildPythonPackage 4 + , fetchPypi 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "bluepy-devices"; 9 + version = "0.2.1"; 10 + 11 + src = fetchPypi { 12 + pname = "bluepy_devices"; 13 + inherit version; 14 + sha256 = "02zzzivxq2vifgs65m2rm8pqlsbzsbc419c032irzvfxjx539mr8"; 15 + }; 16 + 17 + propagatedBuildInputs = [ bluepy ]; 18 + 19 + # Project has no test 20 + doCheck = false; 21 + pythonImportsCheck = [ "bluepy_devices" ]; 22 + 23 + meta = with lib; { 24 + description = "Python BTLE Device Interface for bluepy"; 25 + homepage = "https://github.com/bimbar/bluepy_devices"; 26 + license = with licenses; [ mit ]; 27 + maintainers = with maintainers; [ fab ]; 28 + }; 29 + }
+2
pkgs/top-level/python-packages.nix
··· 985 985 986 986 bluepy = callPackage ../development/python-modules/bluepy { }; 987 987 988 + bluepy-devices = callPackage ../development/python-modules/bluepy-devices { }; 989 + 988 990 bme680 = callPackage ../development/python-modules/bme680 { }; 989 991 990 992 bokeh = callPackage ../development/python-modules/bokeh { };