2019-02-20 18:05:08 -08:00
|
|
|
{ stdenv, fetchFromGitHub, buildPythonPackage }:
|
2019-02-15 08:30:27 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "beanstalkc";
|
2019-02-20 18:05:08 -08:00
|
|
|
version = "0.5.2";
|
2019-02-15 08:30:27 -08:00
|
|
|
|
2019-02-20 18:05:08 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bosondata";
|
|
|
|
repo = "beanstalkc";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1dpb1yimp2pfnikmgsb2fr9x6h8riixlsx3xfqphnfvrid49vw5s";
|
2019-02-15 08:30:27 -08:00
|
|
|
};
|
|
|
|
|
2019-02-20 18:05:08 -08:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-02-15 08:30:27 -08:00
|
|
|
meta = {
|
|
|
|
description = "A simple beanstalkd client library for Python";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ aanderse ];
|
|
|
|
license = with stdenv.lib.licenses; [ asl20 ];
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/earl/beanstalkc";
|
2019-02-15 08:30:27 -08:00
|
|
|
};
|
|
|
|
}
|