nixpkgs/pkgs/development/python-modules/pytest-check/default.nix
2021-12-14 12:04:18 -08:00

29 lines
609 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-check";
version = "1.0.4";
format = "flit";
src = fetchPypi {
pname = "pytest_check";
inherit version;
sha256 = "c93eee5a98bcd28634a4ec657ab62c46d25fa384300811e5a925d9c4d98b9540";
};
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 ];
};
}