mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.memcached: refactor move to python-modules
This commit is contained in:
parent
f5a4b625db
commit
0edde48336
2 changed files with 27 additions and 17 deletions
26
pkgs/development/python-modules/memcached/default.nix
Normal file
26
pkgs/development/python-modules/memcached/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -5839,23 +5839,7 @@ in {
|
||||||
|
|
||||||
meinheld = callPackage ../development/python-modules/meinheld { };
|
meinheld = callPackage ../development/python-modules/meinheld { };
|
||||||
|
|
||||||
memcached = buildPythonPackage rec {
|
memcached = callPackage ../development/python-modules/memcached { };
|
||||||
name = "memcached-1.51";
|
|
||||||
|
|
||||||
src = if isPy3k then pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/p/python3-memcached/python3-${name}.tar.gz";
|
|
||||||
sha256 = "0na8b369q8fivh3y0nvzbvhh3lgvxiyyv9xp93cnkvwfsr8mkgkw";
|
|
||||||
} else pkgs.fetchurl {
|
|
||||||
url = "http://ftp.tummy.com/pub/python-memcached/old-releases/python-${name}.tar.gz";
|
|
||||||
sha256 = "124s98m6hvxj6x90d7aynsjfz878zli771q96ns767r2mbqn7192";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Python API for communicating with the memcached distributed memory object cache daemon";
|
|
||||||
homepage = http://www.tummy.com/Community/software/python-memcached/;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
memory_profiler = buildPythonPackage rec {
|
memory_profiler = buildPythonPackage rec {
|
||||||
name = "memory_profiler-${version}";
|
name = "memory_profiler-${version}";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue