about summary refs log tree commit diff
path: root/pkgs/development/python-modules/korean-lunar-calendar/default.nix
blob: 92d725b150ddedfbb9ed950cda38a708695ca17a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  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 = "A library to convert Korean lunar-calendar to Gregorian calendar.";
    homepage = "https://github.com/usingsky/korean_lunar_calendar_py";
    license = licenses.mit;
    maintainers = [ maintainers.ris ];
  };
}