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