depot/third_party/nixpkgs/pkgs/development/python-modules/ttls/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

47 lines
927 B
Nix

{
lib,
aiohttp,
buildPythonPackage,
colour,
fetchFromGitHub,
poetry-core,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "ttls";
version = "1.8.2";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jschlyter";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-i9vJr7uTpkUZ9WiL0BGidIgCdG87k8JnmZuPqt6qLQE=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
aiohttp
colour
setuptools
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "ttls" ];
meta = with lib; {
description = "Module to interact with Twinkly LEDs";
mainProgram = "ttls";
homepage = "https://github.com/jschlyter/ttls";
changelog = "https://github.com/jschlyter/ttls/blob/v${version}/CHANGES.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}