python3Packages.bluepy-devices: init at 0.2.1
This commit is contained in:
parent
21d41be80b
commit
443e4c88b5
29
pkgs/development/python-modules/bluepy-devices/default.nix
Normal file
29
pkgs/development/python-modules/bluepy-devices/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ lib
|
||||||
|
, bluepy
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "bluepy-devices";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
pname = "bluepy_devices";
|
||||||
|
inherit version;
|
||||||
|
sha256 = "02zzzivxq2vifgs65m2rm8pqlsbzsbc419c032irzvfxjx539mr8";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ bluepy ];
|
||||||
|
|
||||||
|
# Project has no test
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "bluepy_devices" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python BTLE Device Interface for bluepy";
|
||||||
|
homepage = "https://github.com/bimbar/bluepy_devices";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -985,6 +985,8 @@ in {
|
|||||||
|
|
||||||
bluepy = callPackage ../development/python-modules/bluepy { };
|
bluepy = callPackage ../development/python-modules/bluepy { };
|
||||||
|
|
||||||
|
bluepy-devices = callPackage ../development/python-modules/bluepy-devices { };
|
||||||
|
|
||||||
bme680 = callPackage ../development/python-modules/bme680 { };
|
bme680 = callPackage ../development/python-modules/bme680 { };
|
||||||
|
|
||||||
bokeh = callPackage ../development/python-modules/bokeh { };
|
bokeh = callPackage ../development/python-modules/bokeh { };
|
||||||
|
Loading…
Reference in New Issue
Block a user