about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/twitter-common-confluence/default.nix
blob: d718a18822beda080e714ffcbdb39a12fb317f44 (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
, 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 ];
  };

}