about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/umemcache/default.nix
blob: f852483cda689b03af1a19795a3427117509b89c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, 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 lib; {
    description = "Ultra fast memcache client written in highly optimized C++ with Python bindings";
    homepage = "https://github.com/esnme/ultramemcache";
    license = licenses.bsdOriginal;
  };
}