Merge pull request #167773 from r-ryantm/auto-update/python310Packages.pyplaato

python310Packages.pyplaato: 0.0.16 -> 0.0.17

authored by Fabian Affolter and committed by GitHub 4d0eb3f5 e12311ba

+15 -5
+15 -5
pkgs/development/python-modules/pyplaato/default.nix
··· 3 3 , fetchPypi 4 4 , aiohttp 5 5 , python-dateutil 6 + , pythonOlder 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "pyplaato"; 10 - version = "0.0.16"; 11 + version = "0.0.17"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 11 15 12 16 src = fetchPypi { 13 17 inherit pname version; 14 - sha256 = "sha256-0hbdwgkQhcjD9YbpG+bczAAi9u1QfrJdMn1g14EBPac="; 18 + hash = "sha256-fd7gHDah5yoqpH5d3bwEDsIfeflXzXevJLMD7lvz180="; 15 19 }; 16 20 17 - propagatedBuildInputs = [ aiohttp python-dateutil ]; 21 + propagatedBuildInputs = [ 22 + aiohttp 23 + python-dateutil 24 + ]; 18 25 19 - # Project has no tests 26 + # Module has no tests 20 27 doCheck = false; 21 - pythonImportsCheck = [ "pyplaato" ]; 28 + 29 + pythonImportsCheck = [ 30 + "pyplaato" 31 + ]; 22 32 23 33 meta = with lib; { 24 34 description = "Python API client for fetching Plaato data";