ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / python-modules / django-mptt / default.nix
blob404b6df1bc909b117a9c2bb9f6e4282684c085c8
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   hatchling,
6   django,
7   django-js-asset,
8 }:
10 buildPythonPackage rec {
11   pname = "django-mptt";
12   version = "0.16";
13   pyproject = true;
15   src = fetchFromGitHub {
16     owner = "django-mptt";
17     repo = "django-mptt";
18     rev = version;
19     hash = "sha256-vWnXKWzaa5AWoNaIc8NA1B2mnzKXRliQmi5VdrRMadE=";
20   };
22   build-system = [ hatchling ];
24   dependencies = [
25     django
26     django-js-asset
27   ];
29   pythonImportsCheck = [ "mptt" ];
31   # No pytest checks, since they depend on model_mommy, which is deprecated
32   doCheck = false;
34   meta = with lib; {
35     description = "Utilities for implementing a modified pre-order traversal tree in Django";
36     homepage = "https://github.com/django-mptt/django-mptt";
37     maintainers = with maintainers; [ hexa ];
38     license = with licenses; [ mit ];
39   };