python312Packages.querystring-parser: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-05 11:10:29 +02:00
parent 6d46950f17
commit 08498b5366

View File

@ -1,10 +1,11 @@
{ lib
, buildPythonPackage
, fetchPypi
, python
, pythonOlder
, setuptools
, six
{
lib,
buildPythonPackage,
fetchPypi,
python,
pythonOlder,
setuptools,
six,
}:
buildPythonPackage rec {
@ -20,20 +21,14 @@ buildPythonPackage rec {
hash = "sha256-ZE/OHP/gUwRTtDqDo4CU2+QizLqMmy8qHAAoDhTKimI=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
six
];
dependencies = [ six ];
# https://github.com/bernii/querystring-parser/issues/35
doCheck = false;
pythonImportsCheck = [
"querystring_parser"
];
pythonImportsCheck = [ "querystring_parser" ];
meta = with lib; {
description = "Module to handle nested dictionaries";