Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / logzero / default.nix
blobfa35ca73b51ec41976f366af750f3e1c17c91f04
1 { lib, buildPythonPackage, fetchPypi, pytest }:
3 buildPythonPackage rec {
4   pname = "logzero";
5   version = "1.7.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "7f73ddd3ae393457236f081ffebd044a3aa2e423a47ae6ddb5179ab90d0ad082";
11   };
13   nativeCheckInputs = [ pytest ];
14   checkPhase = ''
15     pytest
16   '';
18   meta = with lib; {
19     homepage = "https://github.com/metachris/logzero";
20     description = "Robust and effective logging for Python 2 and 3";
21     license = licenses.mit;
22     maintainers = with maintainers; [ jakewaksbaum ];
23   };