fix seahub install

This commit is contained in:
Trolli Schmittlauch 2019-10-12 23:21:29 +02:00
parent 9bcc347c83
commit b93fb689ef

View file

@ -38,7 +38,10 @@
#sha256 = "sha256:1aypbqrv30x9mmhiwcmkmzmac0mw0gx7cb1n4x90h46iqlbanhnq"; #sha256 = "sha256:1aypbqrv30x9mmhiwcmkmzmac0mw0gx7cb1n4x90h46iqlbanhnq";
sha256 = "sha256:19f9279zqkfy39gs1qfaj0m8asva5jgadh8f0yln8ln4khsrcnk8"; sha256 = "sha256:19f9279zqkfy39gs1qfaj0m8asva5jgadh8f0yln8ln4khsrcnk8";
}; };
phases = [ "unpackPhase" "fixupPhase" "distPhase" ]; phases = [ "unpackPhase" "installPhase" "fixupPhase" "distPhase" ];
installPhase = ''
cp -r ./ $out
'';
propagatedBuildInputs = with python27Packages; [ propagatedBuildInputs = with python27Packages; [
django pytz django-statici18n djangorestframework django_compressor django pytz django-statici18n djangorestframework django_compressor
django-post_office django-constance gunicorn flup chardet dateutil six django-post_office django-constance gunicorn flup chardet dateutil six
@ -105,4 +108,5 @@
maintainers = with maintainers; [ schmittlauch ]; maintainers = with maintainers; [ schmittlauch ];
license = licenses.free; # components with different free software licenses are combined license = licenses.free; # components with different free software licenses are combined
}; };
inherit seahub;
} }