python3Packages.bizkaibus: init at 0.1.4
This commit is contained in:
parent
c2e7cb1a5a
commit
448547c14b
2 changed files with 37 additions and 0 deletions
35
pkgs/development/python-modules/bizkaibus/default.nix
Normal file
35
pkgs/development/python-modules/bizkaibus/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue