1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 15:41:40 +00:00

Merge pull request #50091 from r-ryantm/auto-update/httpie

httpie: 0.9.9 -> 1.0.0
This commit is contained in:
Jörg Thalheim 2018-11-10 00:58:11 +00:00 committed by GitHub
commit 0ede13cf1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "httpie-0.9.9";
name = "httpie-1.0.0";
src = fetchurl {
url = "mirror://pypi/h/httpie/${name}.tar.gz";
sha256 = "1jsgfkyzzizgfy1b0aicb4cp34d5pwskz9c4a8kf4rq3lrpjw87i";
sha256 = "09cs2n76318i34vms9pdnbds53pnp1m11gwn444j49na5qnk8l0n";
};
propagatedBuildInputs = with pythonPackages; [ pygments requests ];