2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, buildPythonPackage }:
|
2019-02-15 16:30:27 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "beanstalkc";
|
2019-02-21 02:05:08 +00:00
|
|
|
version = "0.5.2";
|
2019-02-15 16:30:27 +00:00
|
|
|
|
2019-02-21 02:05:08 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bosondata";
|
|
|
|
repo = "beanstalkc";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1dpb1yimp2pfnikmgsb2fr9x6h8riixlsx3xfqphnfvrid49vw5s";
|
2019-02-15 16:30:27 +00:00
|
|
|
};
|
|
|
|
|
2019-02-21 02:05:08 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
meta = with lib; {
|
2019-02-15 16:30:27 +00:00
|
|
|
description = "A simple beanstalkd client library for Python";
|
2021-01-24 00:29:22 +00:00
|
|
|
maintainers = with maintainers; [ aanderse ];
|
|
|
|
license = licenses.asl20;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/earl/beanstalkc";
|
2019-02-15 16:30:27 +00:00
|
|
|
};
|
|
|
|
}
|