summary refs log tree commit diff
path: root/pkgs/development/python-modules/beanstalkc/default.nix
blob: c24e9a03d158a0a14bb5bd8a2e42c103f0e794ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 = {
    description = "A simple beanstalkd client library for Python";
    maintainers = with stdenv.lib.maintainers; [ aanderse ];
    license = with stdenv.lib.licenses; [ asl20 ];
    homepage = "https://github.com/earl/beanstalkc";
  };
}