Files
nixpkgs/pkgs/development/python-modules/twill/default.nix
2025-09-17 04:59:16 +00:00

58 lines
1005 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
flask,
httpx,
lxml,
pyparsing,
pytestCheckHook,
pythonOlder,
quixote,
setuptools,
}:
buildPythonPackage rec {
pname = "twill";
version = "3.3.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-/ZT5ntn7YMafrD9/rWaOvROKo+CGFKSldG9jjH/eR0Q=";
};
pythonRelaxDeps = [ "lxml" ];
build-system = [ setuptools ];
dependencies = [
httpx
lxml
pyparsing
];
nativeCheckInputs = [
flask
pytestCheckHook
quixote
];
disabledTestPaths = [
# pytidylib is abandoned
"tests/test_tidy.py"
];
pythonImportsCheck = [ "twill" ];
meta = with lib; {
description = "Simple scripting language for Web browsing";
homepage = "https://twill-tools.github.io/twill/";
changelog = "https://github.com/twill-tools/twill/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
};
}