Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 25 lines 576 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, twitter-common-log 5}: 6 7buildPythonPackage rec { 8 pname = "twitter.common.confluence"; 9 version = "0.3.10"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "8285cab3d31e4065a13575c1920101db4df0f36a59babcc225775e4fae91c0a1"; 14 }; 15 16 propagatedBuildInputs = [ twitter-common-log ]; 17 18 meta = with stdenv.lib; { 19 description = "Twitter's API to the confluence wiki"; 20 homepage = "https://twitter.github.io/commons/"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ copumpkin ]; 23 }; 24 25}