python3Packages.bizkaibus: init at 0.1.4

This commit is contained in:
Fabian Affolter 2021-06-26 22:04:49 +02:00 committed by Jonathan Ringer
parent c2e7cb1a5a
commit 448547c14b
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, requests
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "bizkaibus";
version = "0.1.4";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "UgaitzEtxebarria";
repo = "BizkaibusRTPI";
rev = version;
sha256 = "1v7k9fclndb4x9npzhzj68kbrc3lb3wr6cwal2x46ib207593ckr";
};
propagatedBuildInputs = [
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "bizkaibus" ];
meta = with lib; {
description = "Python module to get information about Bizkaibus buses";
homepage = "https://github.com/UgaitzEtxebarria/BizkaibusRTPI";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1099,6 +1099,8 @@ in {
bitvavo-aio = callPackage ../development/python-modules/bitvavo-aio { };
bizkaibus = callPackage ../development/python-modules/bizkaibus { };
bjoern = callPackage ../development/python-modules/bjoern { };
bkcharts = callPackage ../development/python-modules/bkcharts { };