depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-mpl/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

59 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
pytest,
jinja2,
matplotlib,
pillow,
pytest7CheckHook,
}:
buildPythonPackage rec {
pname = "pytest-mpl";
version = "0.16.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-LVcWgRJOj/X04rnA0EfTfQSZ1rbY8vSaG1DN2ZMQRGk=";
};
nativeBuildInputs = [ setuptools-scm ];
buildInputs = [ pytest ];
propagatedBuildInputs = [
jinja2
matplotlib
pillow
];
nativeCheckInputs = [ pytest7CheckHook ];
disabledTests = [
# Broken since b6e98f18950c2b5dbdc725c1181df2ad1be19fee
"test_hash_fails"
"test_hash_missing"
];
disabledTestPaths = [
# Following are broken since at least a1548780dbc79d76360580691dc1bb4af4e837f6
"tests/subtests/test_subtest.py"
];
preCheck = ''
export HOME=$(mktemp -d)
mkdir -p $HOME/.config/matplotlib
echo "backend: ps" > $HOME/.config/matplotlib/matplotlibrc
ln -s $HOME/.config/matplotlib $HOME/.matplotlib
'';
meta = with lib; {
description = "Pytest plugin to help with testing figures output from Matplotlib";
homepage = "https://github.com/matplotlib/pytest-mpl";
license = licenses.bsd3;
maintainers = [ ];
};
}