Merge pull request #170141 from fabaff/peco

python3Packages.peco: init at 0.0.29
This commit is contained in:
Martin Weinelt 2022-04-24 23:12:58 +02:00 committed by GitHub
commit a3a4e92b13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 1 deletions

View file

@ -0,0 +1,39 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, pydantic
, pythonOlder
}:
buildPythonPackage rec {
pname = "peco";
version = "0.0.29";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-zL0tBTwm+l5eyxlWr2xoE+nLpMfUKri1/yD+WgTUqHQ=";
};
propagatedBuildInputs = [
aiohttp
pydantic
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"peco"
];
meta = with lib; {
description = "Library for interacting with the PECO outage map";
homepage = "https://github.com/IceBotYT/peco-outage-api";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1959,7 +1959,8 @@
sqlalchemy
];
"peco" = ps: with ps; [
]; # missing inputs: peco
peco
];
"pencom" = ps: with ps; [
]; # missing inputs: pencompy
"persistent_notification" = ps: with ps; [
@ -3510,6 +3511,7 @@
"p1_monitor"
"panel_custom"
"panel_iframe"
"peco"
"persistent_notification"
"person"
"philips_js"

View file

@ -6132,6 +6132,8 @@ in {
pecan = callPackage ../development/python-modules/pecan { };
peco = callPackage ../development/python-modules/peco { };
peewee = callPackage ../development/python-modules/peewee { };
pefile = callPackage ../development/python-modules/pefile { };