Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "korean-lunar-calendar"; 9 version = "0.3.1"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit version; 14 pname = "korean_lunar_calendar"; 15 hash = "sha256-6yxIUSSgYQFpJr3qbYnv35uf2/FttViVts8eW+wXuFc="; 16 }; 17 18 # no real tests 19 pythonImportsCheck = [ "korean_lunar_calendar" ]; 20 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 }; 27}