Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 22 lines 567 B view raw
1{ stdenv, 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 = { 17 description = "A simple beanstalkd client library for Python"; 18 maintainers = with stdenv.lib.maintainers; [ aanderse ]; 19 license = with stdenv.lib.licenses; [ asl20 ]; 20 homepage = "https://github.com/earl/beanstalkc"; 21 }; 22}