Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 477 B view raw
1{ lib, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "redis"; 5 version = "3.3.11"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8d0fc278d3f5e1249967cba2eb4a5632d19e45ce5c09442b8422d15ee2c22cc2"; 10 }; 11 12 # tests require a running redis 13 doCheck = false; 14 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 }; 20}