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