nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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

httpie: 1.0.0 -> 1.0.2

authored by

Maximilian Bosch and committed by
GitHub
57d9c3d2 3c53b354

+2 -2
+2 -2
pkgs/tools/networking/httpie/default.nix
··· 1 1 { stdenv, fetchurl, pythonPackages }: 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 - name = "httpie-1.0.0"; 4 + name = "httpie-1.0.2"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://pypi/h/httpie/${name}.tar.gz"; 8 - sha256 = "09cs2n76318i34vms9pdnbds53pnp1m11gwn444j49na5qnk8l0n"; 8 + sha256 = "1ax22jh5lpjywpj7lsl072wdhr1pxiqzmxhyph5diwxxzs2nqrzw"; 9 9 }; 10 10 11 11 propagatedBuildInputs = with pythonPackages; [ pygments requests ];