croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / beanstalkc / default.nix
blobce9d606553ef8bf5ad02af85f0e42eaebc1b7d84
2   lib,
3   fetchFromGitHub,
4   buildPythonPackage,
5 }:
7 buildPythonPackage rec {
8   pname = "beanstalkc";
9   version = "0.5.2";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "bosondata";
14     repo = "beanstalkc";
15     rev = "v${version}";
16     sha256 = "1dpb1yimp2pfnikmgsb2fr9x6h8riixlsx3xfqphnfvrid49vw5s";
17   };
19   doCheck = false;
21   meta = with lib; {
22     description = "Simple beanstalkd client library for Python";
23     maintainers = with maintainers; [ aanderse ];
24     license = licenses.asl20;
25     homepage = "https://github.com/earl/beanstalkc";
26   };