ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
24 lines
625 B
Nix
24 lines
625 B
Nix
{ buildPythonPackage, fetchPypi, stdenv, libmemcached, zlib, cyrus_sasl }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.5.2";
|
|
pname = "pylibmc";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "fc54e28a9f1b5b2ec0c030da29c7ad8a15c2755bd98aaa4142eaf419d5fabb33";
|
|
};
|
|
|
|
buildInputs = [ libmemcached zlib cyrus_sasl ];
|
|
setupPyBuildFlags = [ "--with-sasl2" ];
|
|
|
|
# requires an external memcached server running
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Quick and small memcached client for Python";
|
|
homepage = http://sendapatch.se/projects/pylibmc/;
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|