1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 flake8,
6 pytestCheckHook,
7 setuptools,
8 six,
9}:
10
11buildPythonPackage rec {
12 pname = "orderedmultidict";
13 version = "1.0.1";
14 pyproject = true;
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-BAcLu16HKRzJv6Ud9BNnf68hQcc8YdKl97Jr6jzYgq0=";
19 };
20
21 build-system = [ setuptools ];
22
23 dependencies = [ six ];
24
25 pythonImportsCheck = [ "orderedmultidict" ];
26
27 nativeCheckInputs = [ pytestCheckHook ];
28
29 meta = {
30 description = "Ordered Multivalue Dictionary";
31 homepage = "https://github.com/gruns/orderedmultidict";
32 license = lib.licenses.unlicense;
33 };
34}