ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / bluepy-devices / default.nix
blobc1baeedcb5e41f5b5ae359e9391d5061e146e3d9
1 { lib
2 , bluepy
3 , buildPythonPackage
4 , fetchPypi
5 }:
7 buildPythonPackage rec {
8   pname = "bluepy-devices";
9   version = "0.2.1";
11   src = fetchPypi {
12     pname = "bluepy_devices";
13     inherit  version;
14     sha256 = "02zzzivxq2vifgs65m2rm8pqlsbzsbc419c032irzvfxjx539mr8";
15   };
17   propagatedBuildInputs = [ bluepy ];
19   # Project has no test
20   doCheck = false;
21   pythonImportsCheck = [ "bluepy_devices" ];
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   };