Skip to content

Commit

Permalink
python312Packages.twill: format with nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Apr 29, 2024
1 parent 92f92fa commit 7679a71
Showing 1 changed file with 16 additions and 23 deletions.
39 changes: 16 additions & 23 deletions pkgs/development/python-modules/twill/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{ lib
, buildPythonPackage
, fetchPypi
, httpx
, lxml
, pyparsing
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, quixote
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
httpx,
lxml,
pyparsing,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
quixote,
setuptools,
}:

buildPythonPackage rec {
Expand All @@ -23,17 +24,11 @@ buildPythonPackage rec {
hash = "sha256-YlZKvOGxLWwGh+MqCXf8tfruxLK60H73k1VQhGOSTc8=";
};

pythonRelaxDeps = [
"lxml"
];
pythonRelaxDeps = [ "lxml" ];

build-system = [
setuptools
];
build-system = [ setuptools ];

nativeBuildInputs = [
pythonRelaxDepsHook
];
nativeBuildInputs = [ pythonRelaxDepsHook ];

dependencies = [
httpx
Expand All @@ -51,9 +46,7 @@ buildPythonPackage rec {
"tests/test_tidy.py"
];

pythonImportsCheck = [
"twill"
];
pythonImportsCheck = [ "twill" ];

meta = with lib; {
description = "A simple scripting language for Web browsing";
Expand Down

0 comments on commit 7679a71

Please sign in to comment.