ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / prayer-times-calculator / default.nix
blobd686ac3bd0b064c3efa4f077c62d7df54ae05b5b
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , requests
6 }:
8 buildPythonPackage rec {
9   pname = "prayer-times-calculator";
10   version = "0.0.7";
11   disabled = pythonOlder "3.6";
13   src = fetchFromGitHub {
14     owner = "uchagani";
15     repo = pname;
16     rev = "refs/tags/${version}";
17     sha256 = "sha256-fIfv10oi5Lv1dj5Y5CYI94/UdWG3bAY/ENCiMTkO0RE=";
18   };
20   propagatedBuildInputs = [
21     requests
22   ];
24   # Project has no tests
25   doCheck = false;
27   pythonImportsCheck = [ "prayer_times_calculator" ];
29   meta = with lib; {
30     description = "Python client for the Prayer Times API";
31     homepage = "https://github.com/uchagani/prayer-times-calculator";
32     license = licenses.mit;
33     maintainers = with maintainers; [ fab ];
34   };