nixpkgs/pkgs/development/python-modules/redis/default.nix

21 lines
477 B
Nix
Raw Normal View History

2019-08-01 20:55:36 +02:00
{ lib, fetchPypi, buildPythonPackage }:
2017-09-28 14:00:01 +02:00
buildPythonPackage rec {
pname = "redis";
2019-10-16 11:43:14 +02:00
version = "3.3.11";
2017-09-28 14:00:01 +02:00
src = fetchPypi {
inherit pname version;
2019-10-16 11:43:14 +02:00
sha256 = "8d0fc278d3f5e1249967cba2eb4a5632d19e45ce5c09442b8422d15ee2c22cc2";
2017-09-28 14:00:01 +02:00
};
# tests require a running redis
doCheck = false;
2019-08-01 20:55:36 +02:00
meta = with lib; {
2017-09-28 14:00:01 +02:00
description = "Python client for Redis key-value store";
homepage = "https://pypi.python.org/pypi/redis/";
2019-08-01 20:55:36 +02:00
license = with licenses; [ mit ];
2017-09-28 14:00:01 +02:00
};
}