blob: 9104a5927829e9f62e97534ef666be094cf385b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
poetry-core,
pydantic,
}:
buildPythonPackage rec {
pname = "peco";
version = "0.1.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-xW65tEL86ecOfGIbnGiSnKtq7SmKQxW2eMTVrs/nxNc=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
pydantic
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "peco" ];
meta = {
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 lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|