Commit 92d72c39 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.twill: 3.2.5 -> 3.3

parent 95562703
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  flask,
  httpx,
  lxml,
  pyparsing,
@@ -13,14 +14,14 @@

buildPythonPackage rec {
  pname = "twill";
  version = "3.2.5";
  version = "3.3";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-/WIcM/zQ2UjGlGiJRYg9iTCQayzisxGBa5P0/2FDK2Q=";
    hash = "sha256-IprmAuqwzMwB6ryw0GsdRfeFK6ABP4nBM6VdlfgGNoQ=";
  };

  pythonRelaxDeps = [ "lxml" ];
@@ -34,6 +35,7 @@ buildPythonPackage rec {
  ];

  nativeCheckInputs = [
    flask
    pytestCheckHook
    quixote
  ];