python312Packages.peco: 0.0.30 -> 0.1.1

Changelog: https://github.com/IceBotYT/peco-outage-api/releases/tag/0.1.1
This commit is contained in:
Fabian Affolter 2024-06-22 09:58:17 +02:00
parent 3b59176904
commit e5bfe4d301

View File

@ -3,24 +3,24 @@
aiohttp,
buildPythonPackage,
fetchPypi,
poetry-core,
pydantic,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "peco";
version = "0.0.30";
version = "0.1.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-a3MPqtbDftbLGtpJ66CFVC5wJFa9L3dqOKPfBZCaHpM=";
hash = "sha256-p9Uxckc88HbUUtpg3fHGwYojU57mCuRzh3M1RAjKLX0=";
};
build-system = [ setuptools ];
build-system = [ poetry-core ];
dependencies = [
aiohttp
@ -35,6 +35,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library for interacting with the PECO outage map";
homepage = "https://github.com/IceBotYT/peco-outage-api";
changelog = "https://github.com/IceBotYT/peco-outage-api/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};