Merge pull request #154854 from fabaff/bump-twinkly-client
python3Packages.twinkly-client: 0.0.2 -> 0.0.3
This commit is contained in:
commit
c2a8222e23
1 changed files with 11 additions and 4 deletions
|
@ -7,19 +7,26 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "twinkly-client";
|
pname = "twinkly-client";
|
||||||
version = "0.0.2";
|
version = "0.0.3";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "16jbm4ya4yk2nfswza1kpgks70rmy5lpsv9dv3hdjdnr1j44hr3i";
|
sha256 = "sha256-F/N6yMOvLHIfXvPyR7z3P/Rlh79OvCbvEiNwClLSLl8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ aiohttp ];
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
# Project has no tests
|
# Project has no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "twinkly_client" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"twinkly_client"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python module to communicate with Twinkly LED strings";
|
description = "Python module to communicate with Twinkly LED strings";
|
||||||
|
|
Loading…
Reference in a new issue