587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
34 lines
737 B
Nix
34 lines
737 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, matplotlib
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-plt";
|
|
version = "1.1.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-TOuyVH2wKKruy7SBNW3z62yzpmBT6l6RcKhoO1XUFhE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i '/addopts =/d' setup.cfg
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
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 ];
|
|
};
|
|
}
|