mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
httpie: fix
This commit is contained in:
parent
9acfcdc0b6
commit
b79c0bd2f3
1 changed files with 4 additions and 2 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue