paperwork: fix installing translations (#370379)
[NixPkgs.git] / pkgs / development / python-modules / umalqurra / default.nix
blob407edb28ff88df020789eb1a63a9a2a04226782d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "umalqurra";
9   version = "0.2";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678";
15   };
17   # No tests included
18   doCheck = false;
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   };