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

21 lines
476 B
Nix
Raw Normal View History

2019-08-01 19:55:36 +01:00
{ lib, fetchPypi, buildPythonPackage }:
2017-09-28 13:00:01 +01:00
buildPythonPackage rec {
pname = "redis";
2020-06-06 07:47:30 +01:00
version = "3.5.3";
2017-09-28 13:00:01 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:30 +01:00
sha256 = "0e7e0cfca8660dea8b7d5cd8c4f6c5e29e11f31158c0b0ae91a397f00e5a05a2";
2017-09-28 13:00:01 +01:00
};
# tests require a running redis
doCheck = false;
2019-08-01 19:55:36 +01:00
meta = with lib; {
2017-09-28 13:00:01 +01:00
description = "Python client for Redis key-value store";
homepage = "https://pypi.python.org/pypi/redis/";
2019-08-01 19:55:36 +01:00
license = with licenses; [ mit ];
2017-09-28 13:00:01 +01:00
};
}