requests_toolbelt: 0.3.0 -> 0.4.0

This commit is contained in:
Jascha Geerds 2015-06-18 15:15:49 +02:00
parent 3b00ee2228
commit 9df19f6c0a

View File

@ -10775,12 +10775,12 @@ let
}; };
requests_toolbelt = buildPythonPackage rec { requests_toolbelt = buildPythonPackage rec {
version = "0.3.0"; version = "0.4.0";
name = "requests-toolbelt-${version}"; name = "requests-toolbelt-${version}";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://github.com/sigmavirus24/requests-toolbelt/archive/${version}.tar.gz"; url = "https://github.com/sigmavirus24/requests-toolbelt/archive/${version}.tar.gz";
sha256 = "177lqpm2czx81pjg0zfs1dkbbmcn5yf1y5qxj23x6y5d28518qwl"; sha256 = "0zvfz4c9lqiwh2qh51rba6ckpjl3pbp9fcm0ri58qhcjd8mh8k34";
}; };
propagatedBuildInputs = with self; [ requests2 ]; propagatedBuildInputs = with self; [ requests2 ];
@ -10788,7 +10788,7 @@ let
meta = { meta = {
description = "A toolbelt of useful classes and functions to be used with python-requests"; description = "A toolbelt of useful classes and functions to be used with python-requests";
homepage = http://toolbelt.rtfd.org; homepage = http://toolbelt.rtfd.org;
maintainers = with maintainers; [ matthiasbeyer ]; maintainers = with maintainers; [ matthiasbeyer jgeerds ];
}; };
}; };