Commit 08498b53 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.querystring-parser: format with nixfmt

parent 6d46950f
Loading
Loading
Loading
Loading
+11 −16
Original line number Diff line number Diff line
{ 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";