depot/third_party/nixpkgs/pkgs/development/python-modules/flux-led/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
631 B
Nix

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