summary refs log tree commit diff
path: root/pkgs/development/python-modules/twitter-common-confluence/default.nix
blob: ee5bf9bdbe10e4eb9adbe390f916c2a5b409835f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, twitter-common-log
}:

buildPythonPackage rec {
  pname   = "twitter.common.confluence";
  version = "0.3.11";

  src = fetchPypi {
    inherit pname version;
    sha256 = "323dde2c519f85020569d7a343432f3aac16bce6ebe5e34774dbde557296697c";
  };

  propagatedBuildInputs = [ twitter-common-log ];

  meta = with lib; {
    description = "Twitter's API to the confluence wiki";
    homepage    = "https://twitter.github.io/commons/";
    license     = licenses.asl20;
    maintainers = with maintainers; [ copumpkin ];
  };

}