summary refs log tree commit diff
path: root/pkgs/development/python-modules/umemcache/default.nix
blob: 07bb181958adf24fd191f8cfaf9ae122292d01d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, isPy3k, fetchurl }:

buildPythonPackage rec {
  pname = "umemcache";
  version = "1.6.3";
  disabled = isPy3k;

  src = fetchurl {
    url = "mirror://pypi/u/umemcache/${pname}-${version}.zip";
    sha256 = "211031a03576b7796bf277dbc9c9e3e754ba066bbb7fb601ab5c6291b8ec1918";
  };

  hardeningDisable = [ "format" ];

  meta = with stdenv.lib; {
    description = "Ultra fast memcache client written in highly optimized C++ with Python bindings";
    homepage = "https://github.com/esnme/ultramemcache";
    license = licenses.bsdOriginal;
  };
}