Merge pull request #284725 from fabaff/aioopenexchangerates-bump

python311Packages.aioopenexchangerates: 0.4.6 -> 0.4.7
This commit is contained in:
Nick Cao 2024-01-29 09:37:39 -05:00 committed by GitHub
commit a2ef07988b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
{ lib { lib
, aiohttp , aiohttp
, aioresponses , aioresponses
, pydantic , pydantic_1
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, poetry-core , poetry-core
@ -12,7 +12,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aioopenexchangerates"; pname = "aioopenexchangerates";
version = "0.4.6"; version = "0.4.7";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@ -21,12 +21,11 @@ buildPythonPackage rec {
owner = "MartinHjelmare"; owner = "MartinHjelmare";
repo = "aioopenexchangerates"; repo = "aioopenexchangerates";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-6lgjblCyc4NSnw+nlCH0SKV7f9aa4qcfa7v9pgzusKo="; hash = "sha256-BfmXHcAPYPBkHlR5tp8w8Za1mb8GgjvyWIhfrVk38pY=";
}; };
postPatch = '' postPatch = ''
substituteInPlace pyproject.toml \ substituteInPlace pyproject.toml \
--replace 'pydantic = "^1.9"' 'pydantic = "*"' \
--replace " --cov=aioopenexchangerates --cov-report=term-missing:skip-covered" "" --replace " --cov=aioopenexchangerates --cov-report=term-missing:skip-covered" ""
''; '';
@ -36,7 +35,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
aiohttp aiohttp
pydantic pydantic_1
]; ];
nativeCheckInputs = [ nativeCheckInputs = [