Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / twitter-common-log / default.nix
blob61f5d99a8f1c63c0b3036521e3a2b42d65a553fb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , twitter-common-options
5 , twitter-common-dirutil
6 }:
8 buildPythonPackage rec {
9   pname   = "twitter.common.log";
10   version = "0.3.11";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "7160a864eed30044705e05b816077dd193aec0c66f50ef1c077b7f8490e0d06a";
15   };
17   propagatedBuildInputs = [ twitter-common-options twitter-common-dirutil ];
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   };