summary refs log tree commit diff
path: root/pkgs/development/python-modules/twitter-common-log/default.nix
blob: 8cf99c39dc20664fcef0bc68fe236e0c3e8928d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, twitter-common-options
, twitter-common-dirutil
}:

buildPythonPackage rec {
  pname   = "twitter.common.log";
  version = "0.3.11";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7160a864eed30044705e05b816077dd193aec0c66f50ef1c077b7f8490e0d06a";
  };

  propagatedBuildInputs = [ twitter-common-options twitter-common-dirutil ];

  meta = with lib; {
    description = "Twitter's common logging library";
    homepage    = "https://twitter.github.io/commons/";
    license     = licenses.asl20;
    maintainers = with maintainers; [ copumpkin ];
  };

}