nixpkgs/pkgs/development/python-modules/pytest-check/default.nix
2022-04-15 01:39:39 +02:00

29 lines
596 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-check";
version = "1.0.5";
format = "flit";
src = fetchPypi {
pname = "pytest_check";
inherit version;
sha256 = "sha256-ucjbax3uPB5mFivQebgcCDKWy3Ex6YQVGcKKQIGKSHU=";
};
buildInputs = [ pytest ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "pytest plugin allowing multiple failures per test";
homepage = "https://github.com/okken/pytest-check";
license = licenses.mit;
maintainers = [ maintainers.flokli ];
};
}