1{ lib
2, buildPythonPackage
3, fetchPypi
4, twitter-common-log
5}:
6
7buildPythonPackage rec {
8 pname = "twitter.common.confluence";
9 version = "0.3.11";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "323dde2c519f85020569d7a343432f3aac16bce6ebe5e34774dbde557296697c";
14 };
15
16 propagatedBuildInputs = [ twitter-common-log ];
17
18 meta = with 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}