python3Packages.pykulersky: init at 0.5.2
This commit is contained in:
parent
b94e1977e0
commit
8a5035c134
43
pkgs/development/python-modules/pykulersky/default.nix
Normal file
43
pkgs/development/python-modules/pykulersky/default.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{ lib
|
||||
, bleak
|
||||
, buildPythonPackage
|
||||
, click
|
||||
, fetchFromGitHub
|
||||
, pytest-asyncio
|
||||
, pytest-mock
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pykulersky";
|
||||
version = "0.5.2";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "emlove";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1fzfixnl28rny7c3wr6gcdpqhyrz7z2aqq6qfwkxnkq2kqdbpmmg";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
bleak
|
||||
click
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytest-asyncio
|
||||
pytest-mock
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pykulersky" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to control Brightech Kuler Sky Bluetooth LED devices";
|
||||
homepage = "https://github.com/emlove/pykulersky";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -5894,6 +5894,8 @@ in {
|
||||
|
||||
pykoplenti = callPackage ../development/python-modules/pykoplenti { };
|
||||
|
||||
pykulersky = callPackage ../development/python-modules/pykulersky { };
|
||||
|
||||
pykwalify = callPackage ../development/python-modules/pykwalify { };
|
||||
|
||||
pylacrosse = callPackage ../development/python-modules/pylacrosse { };
|
||||
|
Loading…
Reference in New Issue
Block a user