pythonPackages.redis: 2.10.5 -> 2.10.6

This commit is contained in:
Lancelot SIX
2017-09-28 14:00:01 +02:00
parent 0bc5d15aee
commit 6960348f2e
2 changed files with 20 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "redis";
version = "2.10.6";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "03vcgklykny0g0wpvqmy8p6azi2s078317wgb2xjv5m2rs9sjb52";
};
# tests require a running redis
doCheck = false;
meta = {
description = "Python client for Redis key-value store";
homepage = "https://pypi.python.org/pypi/redis/";
};
}