summary refs log tree commit diff
path: root/pkgs/development/python-modules/memcached/default.nix
blob: 854f7440daa17683f7e88192dc99d0e87c0e3335 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, buildPythonPackage
, fetchurl
, fetchPypi
, isPy3k
}:

buildPythonPackage rec {
  pname = "memcached-1.51";
  version = "1.51";

  src = if isPy3k then fetchPypi {
    inherit pname version;
    sha256 = "0na8b369q8fivh3y0nvzbvhh3lgvxiyyv9xp93cnkvwfsr8mkgkw";
  } else fetchurl {
    url = "http://ftp.tummy.com/pub/python-memcached/old-releases/python-${pname}-${version}.tar.gz";
    sha256 = "124s98m6hvxj6x90d7aynsjfz878zli771q96ns767r2mbqn7192";
  };

  meta = with stdenv.lib; {
    description = "Python API for communicating with the memcached distributed memory object cache daemon";
    homepage = http://www.tummy.com/Community/software/python-memcached/;
    license = licenses.psfl;
  };

}