blob: 3c71374cffe7c66060cf83ab360bbdb95a76cf19 (
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
59
60
61
62
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
django,
pydantic,
typing-extensions,
# tests
django-stubs,
pytestCheckHook,
pytest-asyncio,
}:
buildPythonPackage rec {
pname = "pyngo";
version = "2.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "yezz123";
repo = "pyngo";
tag = version;
hash = "sha256-vLQz4qjxOnMUZ/SCR7XSg6yCv5ms0eCpm4Azgi8AeSA=";
};
nativeBuildInputs = [
hatchling
];
pythonRelaxDeps = [
"pydantic"
"typing-extensions"
];
propagatedBuildInputs = [
django
pydantic
typing-extensions
];
pythonImportsCheck = [ "pyngo" ];
nativeCheckInputs = [
django-stubs
pytestCheckHook
pytest-asyncio
];
meta = {
changelog = "https://github.com/yezz123/pyngo/releases/tag/${src.tag}";
description = "Pydantic model support for Django & Django-Rest-Framework";
homepage = "https://github.com/yezz123/pyngo";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}
|