biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / korean-lunar-calendar / default.nix
blob98c04b0e666584be11d1928382f911b9fb01f11d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "korean-lunar-calendar";
9   version = "0.3.1";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit version;
14     pname = "korean_lunar_calendar";
15     hash = "sha256-6yxIUSSgYQFpJr3qbYnv35uf2/FttViVts8eW+wXuFc=";
16   };
18   # no real tests
19   pythonImportsCheck = [ "korean_lunar_calendar" ];
21   meta = with lib; {
22     description = "Library to convert Korean lunar-calendar to Gregorian calendar";
23     homepage = "https://github.com/usingsky/korean_lunar_calendar_py";
24     license = licenses.mit;
25     maintainers = [ maintainers.ris ];
26   };