linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / twitter-common-confluence / default.nix
blobd718a18822beda080e714ffcbdb39a12fb317f44
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , twitter-common-log
5 }:
7 buildPythonPackage rec {
8   pname   = "twitter.common.confluence";
9   version = "0.3.11";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "323dde2c519f85020569d7a343432f3aac16bce6ebe5e34774dbde557296697c";
14   };
16   propagatedBuildInputs = [ twitter-common-log ];
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   };