Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / umalqurra / default.nix
blobf06f1d47310462d9223373b65ca83546d0338deb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "umalqurra";
8   version = "0.2";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678";
14   };
16   # No tests included
17   doCheck = false;
19   # See for license
20   # https://github.com/tytkal/python-hijiri-ummalqura/issues/4
21   meta = with lib; {
22     description = "Date Api that support Hijri Umalqurra calendar";
23     homepage = "https://github.com/tytkal/python-hijiri-ummalqura";
24     license = with licenses; [ publicDomain ];
25   };