depot/third_party/nixpkgs/pkgs/development/python-modules/django-graphiql-debug-toolbar/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

62 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
# build-system
poetry-core,
# dependencies
django,
django-debug-toolbar,
graphene-django,
# tests
python,
pytest-django,
pytestCheckHook
}:
buildPythonPackage rec {
pname = "django-graphiql-debug-toolbar";
version = "0.2.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "flavors";
repo = pname;
rev = version;
sha256 = "0fikr7xl786jqfkjdifymqpqnxy4qj8g3nlkgfm24wwq0za719dw";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
django
django-debug-toolbar
graphene-django
];
pythonImportsCheck = [ "graphiql_debug_toolbar" ];
nativeCheckInputs = [
pytest-django
pytestCheckHook
];
preCheck = ''
export DB_BACKEND=sqlite
export DB_NAME=:memory:
export DJANGO_SETTINGS_MODULE=tests.settings
'';
meta = with lib; {
changelog = "https://github.com/flavors/django-graphiql-debug-toolbar/releases/tag/${src.rev}";
description = "Django Debug Toolbar for GraphiQL IDE";
homepage = "https://github.com/flavors/django-graphiql-debug-toolbar";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}