python3Packages.django-graphiql-debug-toolbar: init at 0.2.0

This commit is contained in:
Martin Weinelt 2021-10-11 22:18:36 +02:00
parent 2a258f0692
commit b551e68ad4
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,55 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, django
, django-debug-toolbar
, graphene-django
, python
}:
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"
];
DB_BACKEND = "sqlite";
DB_NAME = ":memory:";
DJANGO_SETTINGS_MODULE = "tests.settings";
checkPhase = ''
runHook preCheck
${python.interpreter} -m django test tests
runHook postCheck
'';
meta = with lib; {
description = "Django Debug Toolbar for GraphiQL IDE";
homepage = "https://github.com/flavors/django-graphiql-debug-toolbar";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -2124,6 +2124,8 @@ in {
django-formtools = callPackage ../development/python-modules/django-formtools { };
django-graphiql-debug-toolbar = callPackage ../development/python-modules/django-graphiql-debug-toolbar { };
django-gravatar2 = callPackage ../development/python-modules/django-gravatar2 { };
django_guardian = callPackage ../development/python-modules/django_guardian { };