mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
bfcf52beea
This fixes an issue with Django 5 pytest checks were removed due to a dependency on model_mommy, which is deprecated.
41 lines
845 B
Nix
41 lines
845 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
django,
|
|
django-js-asset,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-mptt";
|
|
version = "0.16";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "django-mptt";
|
|
repo = "django-mptt";
|
|
rev = version;
|
|
hash = "sha256-vWnXKWzaa5AWoNaIc8NA1B2mnzKXRliQmi5VdrRMadE=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
django
|
|
django-js-asset
|
|
];
|
|
|
|
pythonImportsCheck = [ "mptt" ];
|
|
|
|
# No pytest checks, since they depend on model_mommy, which is deprecated
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Utilities for implementing a modified pre-order traversal tree in Django";
|
|
homepage = "https://github.com/django-mptt/django-mptt";
|
|
maintainers = with maintainers; [ hexa ];
|
|
license = with licenses; [ mit ];
|
|
};
|
|
}
|