3
0
Fork 0
forked from mirrors/nixpkgs

django: don't wrap binary files twice

This commit is contained in:
Fabian Möller 2019-09-11 09:49:17 +02:00
parent 5aa5760261
commit 7a4644fcb8
No known key found for this signature in database
GPG key ID: 70B29D65DD8A7E31
3 changed files with 0 additions and 15 deletions

View file

@ -21,11 +21,6 @@ buildPythonPackage rec {
})
];
# patch only $out/bin to avoid problems with starter templates (see #3134)
postFixup = ''
wrapPythonProgramsIn $out/bin "$out $pythonPath"
'';
propagatedBuildInputs = [ pytz ];
# too complicated to setup

View file

@ -15,11 +15,6 @@ buildPythonPackage rec {
# too complicated to setup
doCheck = false;
# patch only $out/bin to avoid problems with starter templates (see #3134)
postFixup = ''
wrapPythonProgramsIn $out/bin "$out $pythonPath"
'';
meta = with stdenv.lib; {
description = "A high-level Python Web framework";
homepage = https://www.djangoproject.com/;

View file

@ -24,11 +24,6 @@ buildPythonPackage rec {
})
];
# patch only $out/bin to avoid problems with starter templates (see #3134)
postFixup = ''
wrapPythonProgramsIn $out/bin "$out $pythonPath"
'';
propagatedBuildInputs = [ pytz ];
# too complicated to setup