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

21 lines
476 B
Nix
Raw Normal View History

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