lol

python3Packages.bizkaibus: init at 0.1.4

authored by

Fabian Affolter and committed by
Jonathan Ringer
448547c1 c2e7cb1a

+37
+35
pkgs/development/python-modules/bizkaibus/default.nix
··· 1 + { lib 2 + , requests 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "bizkaibus"; 10 + version = "0.1.4"; 11 + disabled = pythonOlder "3.6"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "UgaitzEtxebarria"; 15 + repo = "BizkaibusRTPI"; 16 + rev = version; 17 + sha256 = "1v7k9fclndb4x9npzhzj68kbrc3lb3wr6cwal2x46ib207593ckr"; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + requests 22 + ]; 23 + 24 + # Project has no tests 25 + doCheck = false; 26 + 27 + pythonImportsCheck = [ "bizkaibus" ]; 28 + 29 + meta = with lib; { 30 + description = "Python module to get information about Bizkaibus buses"; 31 + homepage = "https://github.com/UgaitzEtxebarria/BizkaibusRTPI"; 32 + license = with licenses; [ mit ]; 33 + maintainers = with maintainers; [ fab ]; 34 + }; 35 + }
+2
pkgs/top-level/python-packages.nix
··· 1099 1099 1100 1100 bitvavo-aio = callPackage ../development/python-modules/bitvavo-aio { }; 1101 1101 1102 + bizkaibus = callPackage ../development/python-modules/bizkaibus { }; 1103 + 1102 1104 bjoern = callPackage ../development/python-modules/bjoern { }; 1103 1105 1104 1106 bkcharts = callPackage ../development/python-modules/bkcharts { };