Merge pull request #310556 from fabaff/peco-bump

python312Packages.peco: 0.0.29 -> 0.0.30
This commit is contained in:
Fabian Affolter 2024-05-10 14:49:30 +02:00 committed by GitHub
commit b9ce4f0d09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,29 +1,28 @@
{ lib {
, aiohttp lib,
, buildPythonPackage aiohttp,
, fetchPypi buildPythonPackage,
, pydantic fetchPypi,
, pythonOlder pydantic,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "peco"; pname = "peco";
version = "0.0.29"; version = "0.0.30";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-zL0tBTwm+l5eyxlWr2xoE+nLpMfUKri1/yD+WgTUqHQ="; hash = "sha256-a3MPqtbDftbLGtpJ66CFVC5wJFa9L3dqOKPfBZCaHpM=";
}; };
nativeBuildInputs = [ build-system = [ setuptools ];
setuptools
];
propagatedBuildInputs = [ dependencies = [
aiohttp aiohttp
pydantic pydantic
]; ];
@ -31,9 +30,7 @@ buildPythonPackage rec {
# Module has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "peco" ];
"peco"
];
meta = with lib; { meta = with lib; {
description = "Library for interacting with the PECO outage map"; description = "Library for interacting with the PECO outage map";