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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "98978e57797320146f4b233286d9a02f65d20bad0168424118839fc608085280";
  };

  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;
  };
}