Merge pull request #144782 from fabaff/bump-aioguardian

python3Packages.aioguardian: 2021.10.0 -> 2021.11.0

authored by

Fabian Affolter and committed by
GitHub
ea8596e4 50e2b37c

+15 -4
+15 -4
pkgs/development/python-modules/aioguardian/default.nix
··· 4 4 , asyncio-dgram 5 5 , asynctest 6 6 , buildPythonPackage 7 + , docutils 7 8 , fetchFromGitHub 8 9 , poetry-core 9 10 , pytest-aiohttp ··· 15 16 16 17 buildPythonPackage rec { 17 18 pname = "aioguardian"; 18 - version = "2021.10.0"; 19 + version = "2021.11.0"; 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "bachya"; 22 23 repo = pname; 23 24 rev = version; 24 - sha256 = "sha256-LKtuBMbpaVnp/eQ5hW1RQiArEBw4Lw+29y/q6Dq/tyI="; 25 + sha256 = "sha256-jQIRACm0d0a5mQqlwxSTgLZfJFvGLWuJTb/MacppmS4="; 25 26 }; 26 27 27 28 format = "pyproject"; ··· 34 35 aiohttp 35 36 async-timeout 36 37 asyncio-dgram 38 + docutils 37 39 voluptuous 38 40 ]; 39 41 ··· 45 47 pytestCheckHook 46 48 ]; 47 49 48 - disabledTestPaths = [ "examples/" ]; 50 + postPatch = '' 51 + substituteInPlace pyproject.toml \ 52 + --replace 'docutils = "<0.18"' 'docutils = "*"' 53 + ''; 54 + 55 + disabledTestPaths = [ 56 + "examples/" 57 + ]; 49 58 50 - pythonImportsCheck = [ "aioguardian" ]; 59 + pythonImportsCheck = [ 60 + "aioguardian" 61 + ]; 51 62 52 63 meta = with lib; { 53 64 description = " Python library to interact with Elexa Guardian devices";