1{ lib, fetchFromGitHub, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "beanstalkc"; 5 version = "0.5.2"; 6 7 src = fetchFromGitHub { 8 owner = "bosondata"; 9 repo = "beanstalkc"; 10 rev = "v${version}"; 11 sha256 = "1dpb1yimp2pfnikmgsb2fr9x6h8riixlsx3xfqphnfvrid49vw5s"; 12 }; 13 14 doCheck = false; 15 16 meta = with lib; { 17 description = "A simple beanstalkd client library for Python"; 18 maintainers = with maintainers; [ aanderse ]; 19 license = licenses.asl20; 20 homepage = "https://github.com/earl/beanstalkc"; 21 }; 22}