summary refs log tree commit diff
path: root/pkgs/development/python-modules/logutils/default.nix
blob: 8b4cb4e69c5cbb5df72496ed539d49ca8acc5c7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "logutils";
  version = "0.3.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bc058a25d5c209461f134e1f03cab637d66a7a5ccc12e593db56fbb279899a82";
  };

  meta = with stdenv.lib; {
    description = "Logging utilities";
    homepage = "https://bitbucket.org/vinay.sajip/logutils/";
    license = licenses.bsd0;
  };

}