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

23 lines
565 B
Nix
Raw Normal View History

2019-02-21 03:05:08 +01:00
{ stdenv, fetchFromGitHub, buildPythonPackage }:
2019-02-15 17:30:27 +01:00
buildPythonPackage rec {
pname = "beanstalkc";
2019-02-21 03:05:08 +01:00
version = "0.5.2";
2019-02-15 17:30:27 +01:00
2019-02-21 03:05:08 +01:00
src = fetchFromGitHub {
owner = "bosondata";
repo = "beanstalkc";
rev = "v${version}";
sha256 = "1dpb1yimp2pfnikmgsb2fr9x6h8riixlsx3xfqphnfvrid49vw5s";
2019-02-15 17:30:27 +01:00
};
2019-02-21 03:05:08 +01:00
doCheck = false;
2019-02-15 17:30:27 +01:00
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;
};
}