python311Packages.radios: 0.1.1 -> 0.3.0

Diff: https://github.com/frenck/python-radios/compare/v0.1.1...v0.3.0
This commit is contained in:
natsukium
2023-11-25 18:25:59 +09:00
parent 7faac2d324
commit 5b30a71a13
@@ -8,26 +8,28 @@
, awesomeversion
, backoff
, cachetools
, mashumaro
, orjson
, pycountry
, pydantic
, yarl
, aresponses
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "radios";
version = "0.1.1";
version = "0.3.0";
pyproject = true;
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.11";
format = "pyproject";
src = fetchFromGitHub {
owner = "frenck";
repo = "python-radios";
rev = "v${version}";
hash = "sha256-NCBch9MCWVD6ez0sIUph8rwOOzEMZtwC4atXJe53xZM=";
hash = "sha256-bzo+SA8kqc2GcxSV0TiIJyPVG+JshdsMoXSUhZYSphU=";
};
postPatch = ''
@@ -46,12 +48,14 @@ buildPythonPackage rec {
awesomeversion
backoff
cachetools
mashumaro
orjson
pycountry
pydantic
yarl
];
nativeCheckInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];