2ce5db779a
GitOrigin-RevId: 48037fd90426e44e4bf03e6479e88a11453b9b66
40 lines
727 B
Nix
40 lines
727 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, six
|
|
, mock
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-memcached";
|
|
version = "1.59";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linsomniac";
|
|
repo = "python-memcached";
|
|
rev = version;
|
|
hash = "sha256-tHqkwNloPTXOrEGtuDLu1cTw4SKJ4auv8UUbqdNp698=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
];
|
|
|
|
checkInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
# all tests fail
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "memcache" ];
|
|
|
|
meta = with lib; {
|
|
description = "Pure python memcached client";
|
|
homepage = "https://github.com/linsomniac/python-memcached";
|
|
license = licenses.psfl;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|