Merge pull request #148421 from fabaff/fix-enturclient

python3Packages.enturclient: relax aysnc_timeout constraint

authored by Fabian Affolter and committed by GitHub 7bc4ddb8 dd31b078

+9 -1
+9 -1
pkgs/development/python-modules/enturclient/default.nix
··· 11 11 pname = "enturclient"; 12 12 version = "0.2.2"; 13 13 disabled = pythonOlder "3.8"; 14 + 14 15 format = "pyproject"; 15 16 16 17 src = fetchFromGitHub { ··· 29 30 async-timeout 30 31 ]; 31 32 33 + postPatch = '' 34 + substituteInPlace pyproject.toml \ 35 + --replace 'async_timeout = "^3.0.1"' 'async_timeout = ">=3.0.1"' 36 + ''; 37 + 32 38 # Project has no tests 33 39 doCheck = false; 34 40 35 - pythonImportsCheck = [ "enturclient" ]; 41 + pythonImportsCheck = [ 42 + "enturclient" 43 + ]; 36 44 37 45 meta = with lib; { 38 46 description = "Python library for interacting with the Entur.org API";