Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / beanstalkc / default.nix
blobc0590651ded8304dfd1d63137da588f835611036
1 { lib, fetchFromGitHub, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "beanstalkc";
5   version = "0.5.2";
6   format = "setuptools";
8   src = fetchFromGitHub {
9     owner = "bosondata";
10     repo = "beanstalkc";
11     rev = "v${version}";
12     sha256 = "1dpb1yimp2pfnikmgsb2fr9x6h8riixlsx3xfqphnfvrid49vw5s";
13   };
15   doCheck = false;
17   meta = with lib; {
18     description = "A simple beanstalkd client library for Python";
19     maintainers = with maintainers; [ aanderse ];
20     license = licenses.asl20;
21     homepage = "https://github.com/earl/beanstalkc";
22   };