c7f94ff3ce
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
43 lines
797 B
Nix
43 lines
797 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, django
|
|
, django-jinja
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-sites";
|
|
version = "0.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "niwinz";
|
|
repo = "django-sites";
|
|
rev = version;
|
|
hash = "sha256-MQtQC+9DyS1ICXXovbqPpkKIQ5wpuJDgq3Lcd/1kORU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
django-jinja
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
${python.interpreter} runtests.py
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = {
|
|
description = "Alternative implementation of django sites framework";
|
|
homepage = "https://github.com/niwinz/django-sites";
|
|
license = lib.licenses.bsd3;
|
|
# has not been updated for django>=4.0
|
|
broken = lib.versionAtLeast django.version "4";
|
|
};
|
|
}
|