9 buildPythonPackage rec {
10 pname = "django-scopes";
12 format = "setuptools";
14 src = fetchFromGitHub {
16 repo = "django-scopes";
17 rev = "refs/tags/${version}";
18 hash = "sha256-CtToztLVvSb91pMpPNL8RysQJzlRkeXuQbpvbkX3jfM=";
21 propagatedBuildInputs = [
30 pythonImportsCheck = [ "django_scopes" ];
33 description = "Safely separate multiple tenants in a Django database";
34 homepage = "https://github.com/raphaelm/django-scopes";
35 license = licenses.asl20;
36 maintainers = with maintainers; [ ambroisie ];