python311Packages.tellduslive: 0.10.11 -> 0.10.12 (#338130)

This commit is contained in:
Fabian Affolter 2024-08-29 14:38:18 +02:00 committed by GitHub
commit 2cd7fc28dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,38 +6,41 @@
requests, requests,
requests-oauthlib, requests-oauthlib,
pythonOlder, pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "tellduslive"; pname = "tellduslive";
version = "0.10.11"; version = "0.10.12";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "molobrakos"; owner = "molobrakos";
repo = pname; repo = "tellduslive";
rev = "v${version}"; rev = "refs/tags/v${version}";
sha256 = "0aqhj6fq2z2qb4jyk23ygjicf5nlj8lkya7blkyqb7jra5k1gyg0"; sha256 = "sha256-fWL+VSvoT+dT0jzD8DZEMxzTlqj4TYGCJPLpeui5q64=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
docopt docopt
requests requests
requests-oauthlib requests-oauthlib
]; ];
# Project has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "tellduslive" ]; pythonImportsCheck = [ "tellduslive" ];
meta = with lib; { meta = with lib; {
description = "Python module to communicate with Telldus Live"; description = "Python module to communicate with Telldus Live";
mainProgram = "tellduslive";
homepage = "https://github.com/molobrakos/tellduslive"; homepage = "https://github.com/molobrakos/tellduslive";
license = with licenses; [ unlicense ]; license = licenses.unlicense;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "tellduslive";
}; };
} }