bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
27 lines
626 B
Nix
27 lines
626 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "korean-lunar-calendar";
|
|
version = "0.3.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "korean_lunar_calendar";
|
|
hash = "sha256-6yxIUSSgYQFpJr3qbYnv35uf2/FttViVts8eW+wXuFc=";
|
|
};
|
|
|
|
# no real tests
|
|
pythonImportsCheck = [ "korean_lunar_calendar" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to convert Korean lunar-calendar to Gregorian calendar";
|
|
homepage = "https://github.com/usingsky/korean_lunar_calendar_py";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.ris ];
|
|
};
|
|
}
|