Merge pull request #154854 from fabaff/bump-twinkly-client

python3Packages.twinkly-client: 0.0.2 -> 0.0.3
This commit is contained in:
Fabian Affolter 2022-01-16 23:39:35 +01:00 committed by GitHub
commit c2a8222e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,19 +7,26 @@
buildPythonPackage rec {
pname = "twinkly-client";
version = "0.0.2";
version = "0.0.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "16jbm4ya4yk2nfswza1kpgks70rmy5lpsv9dv3hdjdnr1j44hr3i";
sha256 = "sha256-F/N6yMOvLHIfXvPyR7z3P/Rlh79OvCbvEiNwClLSLl8=";
};
propagatedBuildInputs = [ aiohttp ];
propagatedBuildInputs = [
aiohttp
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "twinkly_client" ];
pythonImportsCheck = [
"twinkly_client"
];
meta = with lib; {
description = "Python module to communicate with Twinkly LED strings";