1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, twitter-common-options
5, twitter-common-dirutil
6}:
7
8buildPythonPackage rec {
9 pname = "twitter.common.log";
10 version = "0.3.10";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "81af4b0f51f3fb589f39b410d7031da6792e0ae650a45e9207a25a52a343a555";
15 };
16
17 propagatedBuildInputs = [ twitter-common-options twitter-common-dirutil ];
18
19 meta = with stdenv.lib; {
20 description = "Twitter's common logging library";
21 homepage = "https://twitter.github.io/commons/";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ copumpkin ];
24 };
25
26}