My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/redis/default.nix

19 lines
422 B

{ fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "redis";
version = "3.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "7ba8612bbfd966dea8c62322543fed0095da2834dbd5a7c124afbc617a156aa7";
};
# tests require a running redis
doCheck = false;
meta = {
description = "Python client for Redis key-value store";
homepage = "https://pypi.python.org/pypi/redis/";
};
}