mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 10:14:09 +00:00
Merge pull request #170141 from fabaff/peco
python3Packages.peco: init at 0.0.29
This commit is contained in:
commit
a3a4e92b13
39
pkgs/development/python-modules/peco/default.nix
Normal file
39
pkgs/development/python-modules/peco/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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"
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user