1{ lib
2, buildPythonPackage
3, fetchPypi
4, matplotlib
5, pytestCheckHook
6}:
7
8buildPythonPackage rec {
9 pname = "pytest-plt";
10 version = "1.1.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "sha256-IkTNlierFXIG9WSVUfVoirfQ6z7JOYlCaa5NhnBSuxc=";
15 };
16
17 checkInputs = [
18 pytestCheckHook
19 matplotlib
20 ];
21
22 meta = with lib; {
23 description = "provides fixtures for quickly creating Matplotlib plots in your tests";
24 homepage = "https://www.nengo.ai/pytest-plt/";
25 changelog = "https://github.com/nengo/pytest-plt/blob/master/CHANGES.rst";
26 license = licenses.mit;
27 maintainers = [ maintainers.doronbehar ];
28 };
29}