python3Packages.ovoenergy: init at 1.1.12

This commit is contained in:
Fabian Affolter 2021-05-16 01:09:13 +02:00
parent 06d8a6f99d
commit 808caa6de4
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, aiohttp
, buildPythonPackage
, click
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "ovoenergy";
version = "1.1.12";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "timmo001";
repo = pname;
rev = "v${version}";
sha256 = "1430k699gblxwspsbgxnha8afk6npqharhz2jyjw5gir9pi6g9cz";
};
propagatedBuildInputs = [
aiohttp
click
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "ovoenergy" ];
meta = with lib; {
description = "Python client for getting data from OVO's API";
homepage = "https://github.com/timmo001/ovoenergy";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -4755,6 +4755,8 @@ in {
ovh = callPackage ../development/python-modules/ovh { };
ovoenergy = callPackage ../development/python-modules/ovoenergy { };
owslib = callPackage ../development/python-modules/owslib { };
oyaml = callPackage ../development/python-modules/oyaml { };