depot/third_party/nixpkgs/pkgs/development/python-modules/umalqurra/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

27 lines
611 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "umalqurra";
version = "0.2";
format = "setuptools";
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 ];
};
}