summary refs log tree commit diff
path: root/pkgs/development/python-modules/beanstalkc/default.nix
blob: a74f6c6f8f28bf7255fb9010edbb97f4fe2fd17a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, fetchFromGitHub, buildPythonPackage }:

buildPythonPackage rec {
  pname = "beanstalkc";
  version = "0.5.2";

  src = fetchFromGitHub {
    owner = "bosondata";
    repo = "beanstalkc";
    rev = "v${version}";
    sha256 = "1dpb1yimp2pfnikmgsb2fr9x6h8riixlsx3xfqphnfvrid49vw5s";
  };

  doCheck = false;

  meta = with lib; {
    description = "A simple beanstalkd client library for Python";
    maintainers = with maintainers; [ aanderse ];
    license = licenses.asl20;
    homepage = "https://github.com/earl/beanstalkc";
  };
}