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