Unverified Commit e389a113 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #288758 from fabaff/unidecode-bump

python311Packages.unidecode: 1.3.6 -> 1.3.8
parents 96887a42 05137505
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -3,22 +3,27 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "unidecode";
  version = "1.3.6";
  format = "setuptools";
  version = "1.3.8";
  pyproject = true;

  disabled = pythonOlder "3.5";

  src = fetchFromGitHub {
    owner = "avian2";
    repo = pname;
    rev = "${pname}-${version}";
    hash = "sha256-75E2OlrGIxvwR9MeZEB4bDLdFd1SdprCVcBIJCPS3hM=";
    repo = "unidecode";
    rev = "refs/tags/${pname}-${version}";
    hash = "sha256-OoJSY+dNNISyVwKuRboMH7Je8nYFKxus2c4v3VsmyRE=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];