summary refs log tree commit diff
path: root/pkgs/development/python-modules/umalqurra/default.nix
blob: 4411dbac11b84102787b94b013c5a9c7a4b6d126 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "umalqurra";
  version = "0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678";
  };

  # No tests included
  doCheck = false;

  # See for license
  # https://github.com/tytkal/python-hijiri-ummalqura/issues/4
  meta = with lib; {
    description = "Date Api that support Hijri Umalqurra calendar";
    homepage = "https://github.com/tytkal/python-hijiri-ummalqura";
    license = with licenses; [ publicDomain ];
  };

}