16 buildPythonPackage rec {
17 pname = "pytest-golden";
21 disabled = pythonOlder "3.7";
23 src = fetchFromGitHub {
26 rev = "refs/tags/v${version}";
27 hash = "sha256-l5fXWDK6gWJc3dkYFTokI9tWvawMRnF0td/lSwqkYXE=";
31 substituteInPlace pyproject.toml \
32 --replace "poetry>=0.12" poetry-core \
33 --replace poetry.masonry.api poetry.core.masonry.api
41 # hatchling used for > 0.2.2
50 propagatedBuildInputs = [
61 pythonImportsCheck = [
66 description = "Plugin for pytest that offloads expected outputs to data files";
67 homepage = "https://github.com/oprypin/pytest-golden";
68 license = licenses.mit;
69 maintainers = with maintainers; [ fab ];