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

Merge pull request #284004 from fabaff/python-slugify-bump

python311Packages.python-slugify: 8.0.1 -> 8.0.4
parents 1eca5902 ac0d8c10
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -3,24 +3,29 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
, text-unidecode
, unidecode
}:

buildPythonPackage rec {
  pname = "python-slugify";
  version = "8.0.1";
  format = "setuptools";
  version = "8.0.4";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "un33k";
    repo = pname;
    repo =  "python-slugify";
    rev = "refs/tags/v${version}";
    hash = "sha256-MJac63XjgWdUQdyyEm8O7gAGVszmHxZzRF4frJtR0BU=";
    hash = "sha256-zReUMIkItnDot3XyYCoPUNHrrAllbClWFYcxdTy3A30=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    text-unidecode
  ];