nox: Do not wrap

Fixes madjar/nox#17.
This commit is contained in:
Kirill Elagin 2015-01-09 21:34:48 +03:00
parent 38e2e8702c
commit 67d0e60f6c

View File

@ -1,4 +1,4 @@
{ lib, pythonPackages, fetchurl, makeWrapper, nix }: { lib, pythonPackages, fetchurl }:
pythonPackages.buildPythonPackage rec { pythonPackages.buildPythonPackage rec {
name = "nox-${version}"; name = "nox-${version}";
@ -10,7 +10,7 @@ pythonPackages.buildPythonPackage rec {
sha256 = "1s1jhickdhym70qrb5h4qxq1mvkpwgdppqpfb2jnpfaf1az6c207"; sha256 = "1s1jhickdhym70qrb5h4qxq1mvkpwgdppqpfb2jnpfaf1az6c207";
}; };
buildInputs = [ pythonPackages.pbr makeWrapper ]; buildInputs = [ pythonPackages.pbr ];
pythonPath = with pythonPackages; [ pythonPath = with pythonPackages; [
dogpile_cache dogpile_cache
@ -19,8 +19,6 @@ pythonPackages.buildPythonPackage rec {
characteristic characteristic
]; ];
postInstall = "wrapProgram $out/bin/nox --prefix PATH : ${nix}/bin";
meta = { meta = {
homepage = https://github.com/madjar/nox; homepage = https://github.com/madjar/nox;
description = "Tools to make nix nicer to use"; description = "Tools to make nix nicer to use";