1{ 2 lib, 3 fetchFromGitHub, 4 buildPythonPackage, 5}: 6 7buildPythonPackage rec { 8 pname = "beanstalkc"; 9 version = "0.5.2"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "bosondata"; 14 repo = "beanstalkc"; 15 rev = "v${version}"; 16 sha256 = "1dpb1yimp2pfnikmgsb2fr9x6h8riixlsx3xfqphnfvrid49vw5s"; 17 }; 18 19 doCheck = false; 20 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 }; 27}