1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 twitter-common-log,
6}:
7
8buildPythonPackage rec {
9 pname = "twitter.common.confluence";
10 version = "0.3.11";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "323dde2c519f85020569d7a343432f3aac16bce6ebe5e34774dbde557296697c";
15 };
16
17 propagatedBuildInputs = [ twitter-common-log ];
18
19 meta = with lib; {
20 description = "Twitter's API to the confluence wiki";
21 homepage = "https://twitter.github.io/commons/";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ copumpkin ];
24 };
25}