lol

Merge pull request #8250 from pesterhazy/fix/httpie

httpie: bump version to fix ImportError

+3 -3
+3 -3
pkgs/tools/networking/httpie/default.nix
··· 1 { stdenv, fetchurl, pythonPackages }: 2 3 pythonPackages.buildPythonPackage rec { 4 - name = "httpie-0.8.0"; 5 namePrefix = ""; 6 7 src = fetchurl { 8 url = "http://pypi.python.org/packages/source/h/httpie/${name}.tar.gz"; 9 - sha256 = "16f3scm794plxbyw7a5b4541hb2psa85kfi98g83785i2qwz98ag"; 10 }; 11 12 - propagatedBuildInputs = with pythonPackages; [ pygments requests2 ]; 13 14 doCheck = false; 15
··· 1 { stdenv, fetchurl, pythonPackages }: 2 3 pythonPackages.buildPythonPackage rec { 4 + name = "httpie-0.9.2"; 5 namePrefix = ""; 6 7 src = fetchurl { 8 url = "http://pypi.python.org/packages/source/h/httpie/${name}.tar.gz"; 9 + sha256 = "0s0dsj1iimn17h0xyziwk4kz4ga9s0vy9rhzixh8dna32za84fdg"; 10 }; 11 12 + propagatedBuildInputs = with pythonPackages; [ pygments requests2 curses ]; 13 14 doCheck = false; 15