blob: d4b3e52e007120bfed81ec77df7cf1bcb989d3cb (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
django,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "django-context-decorator";
version = "1.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "rixx";
repo = "django-context-decorator";
rev = "v${version}";
hash = "sha256-lNmZDsguOu2+gtMVjbwr709sbLCQOQ1sAePN7UJQbcw=";
};
build-system = [ flit-core ];
pythonImportsCheck = [ "django_context_decorator" ];
nativeCheckInputs = [
django
pytestCheckHook
];
meta = {
description = "Django @context decorator";
homepage = "https://github.com/rixx/django-context-decorator";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hexa ];
};
}
|