nixpkgs/pkgs/development/python-modules/beanstalkc/default.nix
2020-04-10 17:54:53 +01:00

23 lines
567 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";
};
}