My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/umalqurra/default.nix

26 lines
582 B

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