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