Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 655 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, isPy3k 2, twisted, whisper, txamqp, cachetools, urllib3 3}: 4 5buildPythonPackage rec { 6 pname = "carbon"; 7 version = "1.1.5"; 8 9 disabled = isPy3k; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "a88390553a9ea628fdb74b5b358ed83a657e058bcc811e5819d9db856b4fcf5b"; 14 }; 15 16 propagatedBuildInputs = [ twisted whisper txamqp cachetools urllib3 ]; 17 18 meta = with stdenv.lib; { 19 homepage = http://graphite.wikidot.com/; 20 description = "Backend data caching and persistence daemon for Graphite"; 21 maintainers = with maintainers; [ rickynils offline basvandijk ]; 22 license = licenses.asl20; 23 }; 24}