nixpkgs/pkgs/development/python-modules/pytest-catchlog/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

26 lines
654 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytest, unzip }:
buildPythonPackage rec {
pname = "pytest-catchlog";
version = "1.2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1w7wxh27sbqwm4jgwrjr9c2gy384aca5jzw9c0wzhl0pmk2mvqab";
extension = "zip";
};
nativeBuildInputs = [ unzip ];
buildInputs = [ pytest ];
checkPhase = "make test";
# Requires pytest < 3.1
doCheck = false;
meta = with lib; {
license = licenses.mit;
homepage = "https://pypi.python.org/pypi/pytest-catchlog/";
description = "py.test plugin to catch log messages. This is a fork of pytest-capturelog.";
};
}