depot/third_party/nixpkgs/pkgs/development/python-modules/flux-led/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
641 B
Nix

{ 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;
};
}