33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
38 lines
862 B
Nix
38 lines
862 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, django
|
|
, pytestCheckHook
|
|
, pytest-django
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-scopes";
|
|
version = "1.2.0.post1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "raphaelm";
|
|
repo = "django-scopes";
|
|
# No 1.2.0.post1 tag, see https://github.com/raphaelm/django-scopes/issues/27
|
|
rev = "0b93cdb6a8335cb02a8ea7296511358ba841d137";
|
|
sha256 = "sha256-djptJRkW1pfVbxhhs58fJA4d8dKZuvYRy01Aa3Btr+k=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-django
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "django_scopes" ];
|
|
|
|
meta = with lib; {
|
|
description = "Safely separate multiple tenants in a Django database";
|
|
homepage = "https://github.com/raphaelm/django-scopes";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|