xeus-cling: fix improper linking with LLVM (#351130)
[NixPkgs.git] / pkgs / development / python-modules / querystring-parser / default.nix
blob61763323bc2387e3ce2a30b18350a5bc993d1fa8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7   six,
8 }:
10 buildPythonPackage rec {
11   pname = "querystring-parser";
12   version = "1.2.4";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     pname = "querystring_parser";
19     inherit version;
20     hash = "sha256-ZE/OHP/gUwRTtDqDo4CU2+QizLqMmy8qHAAoDhTKimI=";
21   };
23   build-system = [ setuptools ];
25   dependencies = [ six ];
27   # https://github.com/bernii/querystring-parser/issues/35
28   doCheck = false;
30   pythonImportsCheck = [ "querystring_parser" ];
32   meta = with lib; {
33     description = "Module to handle nested dictionaries";
34     homepage = "https://github.com/bernii/querystring-parser";
35     changelog = "https://github.com/bernii/querystring-parser/releases/tag/${version}";
36     license = licenses.mit;
37     maintainers = with maintainers; [ tbenst ];
38   };