1 { lib, buildPythonPackage, fetchPypi, flake8, six, pythonOlder, importlib-metadata }:
3 buildPythonPackage rec {
4 pname = "orderedmultidict";
9 sha256 = "1bc2v0yflsxjyyjx4q9wqx0j3bvzcw9z87d5pz4iqac7bsxhn1q4";
12 checkInputs = [ flake8 ];
14 propagatedBuildInputs = [ six ]
15 ++ lib.optionals (pythonOlder "3.8") [
20 description = "Ordered Multivalue Dictionary.";
21 homepage = "https://github.com/gruns/orderedmultidict";
22 license = licenses.publicDomain;
23 maintainers = with maintainers; [ vanzef ];