pythonPackages.flux_led: init at v0.22
This commit is contained in:
parent
25d0d2b5e8
commit
ad6e8aa7c3
24
pkgs/development/python-modules/flux-led/default.nix
Normal file
24
pkgs/development/python-modules/flux-led/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, buildPythonPackage, fetchFromGitHub
|
||||
, aiohttp, zigpy
|
||||
, pytest, isPy27 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flux_led";
|
||||
version = "0.22";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Danielhiversen";
|
||||
repo = "flux_led";
|
||||
rev = version;
|
||||
sha256 = "1zgajlkhclyrqhkmivna4ha2lyvfpk5929s042gy59p7mzpkvjx7";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A Python library to communicate with the flux_led smart bulbs";
|
||||
homepage = "https://github.com/Danielhiversen/flux_led";
|
||||
license = licenses.lgpl3;
|
||||
maintainers = with maintainers; [ colemickens ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -2585,6 +2585,8 @@ in {
|
||||
|
||||
fluent-logger = callPackage ../development/python-modules/fluent-logger {};
|
||||
|
||||
flux-led = callPackage ../development/python-modules/flux-led { };
|
||||
|
||||
python-forecastio = callPackage ../development/python-modules/python-forecastio { };
|
||||
|
||||
fpdf = callPackage ../development/python-modules/fpdf { };
|
||||
|
Loading…
Reference in New Issue
Block a user