mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools-scm
|
|
, pytest
|
|
, jinja2
|
|
, matplotlib
|
|
, nose
|
|
, pillow
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-mpl";
|
|
version = "0.16.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-LVcWgRJOj/X04rnA0EfTfQSZ1rbY8vSaG1DN2ZMQRGk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
buildInputs = [
|
|
pytest
|
|
];
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION=version;
|
|
|
|
propagatedBuildInputs = [
|
|
jinja2
|
|
matplotlib
|
|
nose
|
|
pillow
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
|
|
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 = [ maintainers.costrouc ];
|
|
};
|
|
}
|