nixpkgs/pkgs/development/python-modules/beanstalkc/default.nix
2019-02-20 21:05:08 -05:00

23 lines
565 B
Nix

{ stdenv, fetchFromGitHub, buildPythonPackage }:
buildPythonPackage rec {
pname = "beanstalkc";
version = "0.5.2";
src = fetchFromGitHub {
owner = "bosondata";
repo = "beanstalkc";
rev = "v${version}";
sha256 = "1dpb1yimp2pfnikmgsb2fr9x6h8riixlsx3xfqphnfvrid49vw5s";
};
doCheck = false;
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;
};
}