python3Packages.pytankerkoenig: init at 0.0.7

This commit is contained in:
Fabian Affolter 2021-02-27 20:45:47 +01:00
parent 870dbb751f
commit d1b0794a29
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pytankerkoenig";
version = "0.0.7";
src = fetchPypi {
inherit pname version;
sha256 = "021fg1a4n3527fz86zxfbsi0jrk0dnai1y92q6hwh5za68lrs710";
};
# Tests require an API key and network access
doCheck = false;
pythonImportsCheck = [ "pytankerkoenig" ];
meta = with lib; {
description = "Python module to get fuel data from tankerkoenig.de";
homepage = "https://github.com/ultrara1n/pytankerkoenig";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6101,6 +6101,8 @@ in {
pytaglib = callPackage ../development/python-modules/pytaglib { };
pytankerkoenig = callPackage ../development/python-modules/pytankerkoenig { };
pyte = callPackage ../development/python-modules/pyte { };
pytelegrambotapi = callPackage ../development/python-modules/pyTelegramBotAPI { };