Unverified Commit 060c971b authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #233745 from r-ryantm/auto-update/python310Packages.pypinyin

python310Packages.pypinyin: 0.48.0 -> 0.49.0
parents a5d0e21e 56219af8
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -2,17 +2,21 @@
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "pypinyin";
  version = "0.48.0";
  version = "0.49.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "mozillazg";
    repo = "python-pinyin";
    rev = "refs/tags/v${version}";
    hash = "sha256-gt0jrDPr6FeLB5P9HCSosCHb/W1sAKSusTrCpkqO26E=";
    hash = "sha256-4XiPkx7tYD5PQVyeJ/nvxrRzWmeLp9JfY1B853IEE7U=";
  };

  postPatch = ''
@@ -31,7 +35,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Chinese Characters to Pinyin - 汉字转拼音";
    homepage = "https://github.com/mozillazg/python-pinyin";
    changelog = "https://github.com/mozillazg/python-pinyin/blob/master/CHANGELOG.rst";
    changelog = "https://github.com/mozillazg/python-pinyin/blob/v${version}/CHANGELOG.rst";
    license = licenses.mit;
    maintainers = teams.tts.members;
  };