evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / peco / default.nix
blob22f5d29faf8e92d7a45eac307f18b574efa5d537
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchPypi,
6   poetry-core,
7   pydantic,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "peco";
13   version = "0.1.1";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-p9Uxckc88HbUUtpg3fHGwYojU57mCuRzh3M1RAjKLX0=";
21   };
23   build-system = [ poetry-core ];
25   dependencies = [
26     aiohttp
27     pydantic
28   ];
30   # Module has no tests
31   doCheck = false;
33   pythonImportsCheck = [ "peco" ];
35   meta = with lib; {
36     description = "Library for interacting with the PECO outage map";
37     homepage = "https://github.com/IceBotYT/peco-outage-api";
38     changelog = "https://github.com/IceBotYT/peco-outage-api/releases/tag/${version}";
39     license = with licenses; [ mit ];
40     maintainers = with maintainers; [ fab ];
41   };