1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "umalqurra";
9 version = "0.2";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678";
15 };
16
17 # No tests included
18 doCheck = false;
19
20 # See for license
21 # https://github.com/tytkal/python-hijiri-ummalqura/issues/4
22 meta = with lib; {
23 description = "Date Api that support Hijri Umalqurra calendar";
24 homepage = "https://github.com/tytkal/python-hijiri-ummalqura";
25 license = with licenses; [ publicDomain ];
26 };
27}