depot/third_party/nixpkgs/pkgs/development/python-modules/logzero/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

23 lines
549 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "logzero";
version = "1.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "7f73ddd3ae393457236f081ffebd044a3aa2e423a47ae6ddb5179ab90d0ad082";
};
checkInputs = [ pytest ];
checkPhase = ''
pytest
'';
meta = with lib; {
homepage = "https://github.com/metachris/logzero";
description = "Robust and effective logging for Python 2 and 3";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}