mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
python312Packages.twill: format with nixfmt
This commit is contained in:
parent
92f92fab5d
commit
7679a71d5c
@ -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 {
|
||||
@ -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
|
||||
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user