Unverified Commit 739692d1 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

python312Packages.ftfy: 6.2.0 -> 6.2.3 (#332794)

parents 48c01ad1 18614a25
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -17,19 +17,21 @@

buildPythonPackage rec {
  pname = "ftfy";
  version = "6.2.0";
  version = "6.2.3";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-XkIUPHAl75eUTKJhnWthsGGfxmVPmHcdOehiwUJMdcA=";
    hash = "sha256-ebUFmI8p1XelipBpr+dVU6AqRuQt5gkcBmDNxngSutw=";
  };

  nativeBuildInputs = [ poetry-core ];
  build-system = [ poetry-core ];

  propagatedBuildInputs = [ wcwidth ];
  dependencies = [ wcwidth ];

  pythonImportsCheck = [ "ftfy" ];

  nativeCheckInputs = [
    versionCheckHook
@@ -49,7 +51,7 @@ buildPythonPackage rec {
    description = "Given Unicode text, make its representation consistent and possibly less broken";
    mainProgram = "ftfy";
    homepage = "https://github.com/LuminosoInsight/python-ftfy";
    license = licenses.mit;
    license = licenses.asl20;
    maintainers = with maintainers; [ aborsu ];
  };
}