blob: a5901889fd610ecae13b5c3f1cc0d7f71f45a741 (
about) (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "multidict";
version = "6.1.0";
disabled = pythonOlder "3.8";
pyproject = true;
src = fetchFromGitHub {
owner = "aio-libs";
repo = "multidict";
tag = "v${version}";
hash = "sha256-rvL1XzMNBVBlElE5wznecL3Ku9h4tG9VeqGRd04iPXw=";
};
postPatch = ''
# `python3 -I -c "import multidict"` fails with ModuleNotFoundError
substituteInPlace tests/test_circular_imports.py \
--replace-fail '"-I",' ""
'';
build-system = [ setuptools ];
dependencies = lib.optionals (pythonOlder "3.11") [
typing-extensions
];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
preCheck = ''
# import from $out
rm -r multidict
'';
pythonImportsCheck = [ "multidict" ];
meta = with lib; {
changelog = "https://github.com/aio-libs/multidict/blob/v${version}/CHANGES.rst";
description = "Multidict implementation";
homepage = "https://github.com/aio-libs/multidict/";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}
|