depot/third_party/nixpkgs/pkgs/development/python-modules/umalqurra/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
592 B
Nix

{ stdenv
, 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 stdenv.lib; {
description = "Date Api that support Hijri Umalqurra calendar";
homepage = "https://github.com/tytkal/python-hijiri-ummalqura";
license = with licenses; [ publicDomain ];
};
}