Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
944 B
Nix
42 lines
944 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
django,
|
|
djangorestframework,
|
|
pytestCheckHook,
|
|
pytest-django,
|
|
ipdb,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "drf-nested-routers";
|
|
version = "0.95.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alanjds";
|
|
repo = "drf-nested-routers";
|
|
tag = "v${version}";
|
|
hash = "sha256-9oB6pmhZJVvVJeueY44q9ST1JgjmK1FF8QMx7mX5ZFI=";
|
|
};
|
|
|
|
buildInputs = [ django ];
|
|
|
|
propagatedBuildInputs = [ djangorestframework ];
|
|
|
|
nativeCheckInputs = [
|
|
ipdb
|
|
pytestCheckHook
|
|
pytest-django
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/alanjds/drf-nested-routers";
|
|
changelog = "https://github.com/alanjds/drf-nested-routers/blob/v${version}/CHANGELOG.md";
|
|
description = "Provides routers and fields to create nested resources in the Django Rest Framework";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ felschr ];
|
|
};
|
|
}
|