01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
29 lines
648 B
Nix
29 lines
648 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, matplotlib
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-plt";
|
|
version = "1.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-IkTNlierFXIG9WSVUfVoirfQ6z7JOYlCaa5NhnBSuxc=";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
matplotlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "provides fixtures for quickly creating Matplotlib plots in your tests";
|
|
homepage = "https://www.nengo.ai/pytest-plt/";
|
|
changelog = "https://github.com/nengo/pytest-plt/blob/master/CHANGES.rst";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.doronbehar ];
|
|
};
|
|
}
|