at 15.09-beta 22 lines 641 B view raw
1{ stdenv, fetchurl, pythonPackages }: 2 3pythonPackages.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 16 meta = { 17 description = "A command line HTTP client whose goal is to make CLI human-friendly"; 18 homepage = http://httpie.org/; 19 license = stdenv.lib.licenses.bsd3; 20 maintainers = with stdenv.lib.maintainers; [ antono relrod ]; 21 }; 22}