Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / bizkaibus / default.nix
blob7de8f2ca223c9ebddb8637a76651fcea0e4de6a7
1 { lib
2 , requests
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "bizkaibus";
10   version = "0.1.4";
11   disabled = pythonOlder "3.6";
13   src = fetchFromGitHub {
14     owner = "UgaitzEtxebarria";
15     repo = "BizkaibusRTPI";
16     rev = version;
17     sha256 = "1v7k9fclndb4x9npzhzj68kbrc3lb3wr6cwal2x46ib207593ckr";
18   };
20   propagatedBuildInputs = [
21     requests
22   ];
24   # Project has no tests
25   doCheck = false;
27   pythonImportsCheck = [ "bizkaibus" ];
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   };