nixpkgs/pkgs/development/python-modules/beanstalkc/default.nix

23 lines
542 B
Nix
Raw Normal View History

{ 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;
meta = with lib; {
2019-02-15 16:30:27 +00:00
description = "A simple beanstalkd client library for Python";
maintainers = with maintainers; [ aanderse ];
license = licenses.asl20;
homepage = "https://github.com/earl/beanstalkc";
2019-02-15 16:30:27 +00:00
};
}