My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django-graphiql-debug-toolbar/default.nix

55 lines
1.1 KiB

{ 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 ];
};
}