zizmor: 1.0.0 -> 1.0.1 (#371951)
[NixPkgs.git] / pkgs / development / python-modules / django-context-decorator / default.nix
blobe1c6d17259fb70f8d2ce47f9e914c0aeabeb832b
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   flit-core,
6   django,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "django-context-decorator";
12   version = "1.6.1";
13   pyproject = true;
15   src = fetchFromGitHub {
16     owner = "rixx";
17     repo = "django-context-decorator";
18     rev = "v${version}";
19     hash = "sha256-lNmZDsguOu2+gtMVjbwr709sbLCQOQ1sAePN7UJQbcw=";
20   };
22   build-system = [ flit-core ];
24   pythonImportsCheck = [ "django_context_decorator" ];
26   nativeCheckInputs = [
27     django
28     pytestCheckHook
29   ];
31   meta = with lib; {
32     description = "Django @context decorator";
33     homepage = "https://github.com/rixx/django-context-decorator";
34     license = licenses.asl20;
35     maintainers = with maintainers; [ hexa ];
36   };