Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / umalqurra / default.nix
blob0e1b4c681e5ba86956dad360cac46c5fcb67aaab
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "umalqurra";
8   version = "0.2";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678";
13   };
15   # No tests included
16   doCheck = false;
18   # See for license
19   # https://github.com/tytkal/python-hijiri-ummalqura/issues/4
20   meta = with lib; {
21     description = "Date Api that support Hijri Umalqurra calendar";
22     homepage = "https://github.com/tytkal/python-hijiri-ummalqura";
23     license = with licenses; [ publicDomain ];
24   };