1{ lib
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.11";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "7160a864eed30044705e05b816077dd193aec0c66f50ef1c077b7f8490e0d06a";
15 };
16
17 propagatedBuildInputs = [ twitter-common-options twitter-common-dirutil ];
18
19 meta = with 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}