My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/twitter-common-confluence/default.nix

25 lines
566 B

{ 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 ];
};
}