Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / redis / default.nix
blob35109e836fa4dc5332389bb02c25eab84b6fce89
1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "redis";
5   version = "3.5.3";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0e7e0cfca8660dea8b7d5cd8c4f6c5e29e11f31158c0b0ae91a397f00e5a05a2";
10   };
12   # tests require a running redis
13   doCheck = false;
15   meta = with lib; {
16     description = "Python client for Redis key-value store";
17     homepage = "https://pypi.python.org/pypi/redis/";
18     license = with licenses; [ mit ];
19   };