depot/third_party/nixpkgs/pkgs/development/python-modules/aiolifx/default.nix

50 lines
933 B
Nix
Raw Normal View History

{
lib,
async-timeout,
bitstring,
buildPythonPackage,
click,
fetchPypi,
ifaddr,
inquirerpy,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aiolifx";
version = "1.0.5";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-95cCfmaYe8RgmkzqPlV4cufNS6Eb01304S2sSliRpQ0=";
};
build-system = [ setuptools ];
dependencies = [
async-timeout
bitstring
click
ifaddr
inquirerpy
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "aiolifx" ];
meta = with lib; {
description = "Module for local communication with LIFX devices over a LAN";
homepage = "https://github.com/frawau/aiolifx";
changelog = "https://github.com/frawau/aiolifx/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ netixx ];
mainProgram = "aiolifx";
};
}