httpie: fix

This commit is contained in:
Vladimír Čunát 2013-02-16 19:08:43 +01:00
parent 9acfcdc0b6
commit b79c0bd2f3

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, buildPythonPackage }:
{ stdenv, fetchurl, pythonPackages }:
buildPythonPackage {
pythonPackages.buildPythonPackage {
name = "httpie-0.3.1";
namePrefix = "";
@ -9,6 +9,8 @@ buildPythonPackage {
sha256 = "0abjkwcirmp6qa190qgbgj5fmmkmk5aa3fdiyayl2indh6304x7a";
};
propagatedBuildInputs = with pythonPackages; [ pygments requests014 ];
doCheck = false;
meta = {