Commit 05137505 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.unidecode: 1.3.6 -> 1.3.8

parent 36ab9337
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
  ];