forked from mirrors/nixpkgs
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.
50 lines
1,012 B
Nix
50 lines
1,012 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, django
|
|
, django-taggit
|
|
, pytz
|
|
, pythonOlder
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-modelcluster";
|
|
version = "6.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wagtail";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-p6hvOkPWRVJYLHvwyn9nS05wblikRFmlSYZuLiCcuqc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
pytz
|
|
];
|
|
|
|
passthru.optional-dependencies.taggit = [
|
|
django-taggit
|
|
];
|
|
|
|
nativeCheckInputs = passthru.optional-dependencies.taggit;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python.interpreter} ./runtests.py --noinput
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Django extension to allow working with 'clusters' of models as a single unit, independently of the database";
|
|
homepage = "https://github.com/torchbox/django-modelcluster/";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ desiderius ];
|
|
};
|
|
|
|
}
|