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
1 changed files with 2 additions and 4 deletions

View File

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