ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pykulersky / default.nix
blob83a5b58c7f1cb7fa89e38841b4965454c88647a9
1 { lib
2 , bleak
3 , buildPythonPackage
4 , click
5 , fetchFromGitHub
6 , pytest-asyncio
7 , pytest-mock
8 , pytestCheckHook
9 , pythonOlder
12 buildPythonPackage rec {
13   pname = "pykulersky";
14   version = "0.5.4";
15   format = "setuptools";
17   disabled = pythonOlder "3.6";
19   src = fetchFromGitHub {
20     owner = "emlove";
21     repo = pname;
22     rev = version;
23     sha256 = "sha256-voD4tR+k5TKGjLXFK94GJy4+wUoP2cSFc5BWkCiinOg=";
24   };
26   propagatedBuildInputs = [
27     bleak
28     click
29   ];
31   checkInputs = [
32     pytest-asyncio
33     pytest-mock
34     pytestCheckHook
35   ];
37   pythonImportsCheck = [
38     "pykulersky"
39   ];
41   meta = with lib; {
42     description = "Python module to control Brightech Kuler Sky Bluetooth LED devices";
43     homepage = "https://github.com/emlove/pykulersky";
44     license = with licenses; [ asl20 ];
45     maintainers = with maintainers; [ fab ];
46   };