python3Packages.pydelijn: init at 0.6.1

This commit is contained in:
Fabian Affolter 2021-05-16 00:25:16 +02:00
parent 06d8a6f99d
commit 00df27fb04
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytz
}:
buildPythonPackage rec {
pname = "pydelijn";
version = "0.6.1";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "1lwd2f043hy7gf1ly9zpaq1yg947bqw2af8vhwssf48zpisfgc81";
};
propagatedBuildInputs = [
aiohttp
async-timeout
pytz
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pydelijn" ];
meta = with lib; {
description = "Python package to retrieve realtime data of passages at stops of De Lijn";
homepage = "https://github.com/bollewolle/pydelijn";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -5505,6 +5505,8 @@ in {
pydeconz = callPackage ../development/python-modules/pydeconz { };
pydelijn = callPackage ../development/python-modules/pydelijn { };
pydenticon = callPackage ../development/python-modules/pydenticon { };
pydexcom = callPackage ../development/python-modules/pydexcom { };