Merge pull request #301378 from fabaff/aioopenexchangerates-bump

python312Packages.aioopenexchangerates: 0.4.8 -> 0.4.9

authored by Mario Rodas and committed by GitHub d4db290a 58e7a73c

+21 -25
+21 -25
pkgs/development/python-modules/aioopenexchangerates/default.nix
··· 1 - { lib 2 - , aiohttp 3 - , aioresponses 4 - , pydantic 5 - , buildPythonPackage 6 - , fetchFromGitHub 7 - , poetry-core 8 - , pytest-aiohttp 9 - , pytestCheckHook 10 - , pythonOlder 11 - , pythonRelaxDepsHook 1 + { 2 + lib, 3 + aiohttp, 4 + aioresponses, 5 + pydantic, 6 + buildPythonPackage, 7 + fetchFromGitHub, 8 + poetry-core, 9 + pytest-aiohttp, 10 + pytestCheckHook, 11 + pythonOlder, 12 + pythonRelaxDepsHook, 12 13 }: 13 14 14 15 buildPythonPackage rec { 15 16 pname = "aioopenexchangerates"; 16 - version = "0.4.8"; 17 + version = "0.4.9"; 17 18 pyproject = true; 18 19 19 20 disabled = pythonOlder "3.9"; ··· 22 23 owner = "MartinHjelmare"; 23 24 repo = "aioopenexchangerates"; 24 25 rev = "refs/tags/v${version}"; 25 - hash = "sha256-qwqhbHp4JPsbA6g7SI2frtqhayCmA1s3pTW2S4r6gmw="; 26 + hash = "sha256-goOzp5nPkQCtGV7U71ek1LQ93Ko5BdEvawYb/feGRQQ="; 26 27 }; 27 28 28 29 postPatch = '' 29 30 substituteInPlace pyproject.toml \ 30 - --replace " --cov=aioopenexchangerates --cov-report=term-missing:skip-covered" "" 31 + --replace-fail " --cov=aioopenexchangerates --cov-report=term-missing:skip-covered" "" 31 32 ''; 32 33 33 - nativeBuildInputs = [ 34 - poetry-core 35 - pythonRelaxDepsHook 36 - ]; 34 + pythonRelaxDeps = [ "pydantic" ]; 35 + 36 + build-system = [ poetry-core ]; 37 37 38 - pythonRelaxDeps = [ 39 - "pydantic" 40 - ]; 38 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 41 39 42 - propagatedBuildInputs = [ 40 + dependencies = [ 43 41 aiohttp 44 42 pydantic 45 43 ]; ··· 50 48 pytestCheckHook 51 49 ]; 52 50 53 - pythonImportsCheck = [ 54 - "aioopenexchangerates" 55 - ]; 51 + pythonImportsCheck = [ "aioopenexchangerates" ]; 56 52 57 53 meta = with lib; { 58 54 description = "Library for the Openexchangerates API";