Skip to content

Commit

Permalink
python312Packages.twill: 3.2.3 -> 3.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Apr 29, 2024
1 parent 490b52b commit 92f92fa
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions pkgs/development/python-modules/twill/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,35 @@
, pyparsing
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, quixote
, setuptools
}:

buildPythonPackage rec {
pname = "twill";
version = "3.2.3";
version = "3.2.4";
pyproject = true;

disabled = pythonOlder "3.8";

src = fetchPypi {
inherit pname version;
hash = "sha256-m4jrxx7udWkRXzYS0Yfd14tKVHt8kGYPn2eTa4unOdc=";
hash = "sha256-YlZKvOGxLWwGh+MqCXf8tfruxLK60H73k1VQhGOSTc8=";
};

pythonRelaxDeps = [
"lxml"
];

build-system = [
setuptools
];

nativeBuildInputs = [
pythonRelaxDepsHook
];

dependencies = [
httpx
lxml
Expand All @@ -33,6 +43,12 @@ buildPythonPackage rec {

nativeCheckInputs = [
pytestCheckHook
quixote
];

disabledTestPaths = [
# pytidylib is abandoned
"tests/test_tidy.py"
];

pythonImportsCheck = [
Expand Down

0 comments on commit 92f92fa

Please sign in to comment.