python3.pkgs.pytest-plt: init at 1.1.0
This commit is contained in:
parent
7a5f67056a
commit
8ac4008c09
29
pkgs/development/python-modules/pytest-plt/default.nix
Normal file
29
pkgs/development/python-modules/pytest-plt/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -8811,6 +8811,8 @@ self: super: with self; {
|
||||
|
||||
pytest-param-files = callPackage ../development/python-modules/pytest-param-files { };
|
||||
|
||||
pytest-plt = callPackage ../development/python-modules/pytest-plt { };
|
||||
|
||||
pytest-pylint = callPackage ../development/python-modules/pytest-pylint { };
|
||||
|
||||
pytest-qt = callPackage ../development/python-modules/pytest-qt { };
|
||||
|
Loading…
Reference in New Issue
Block a user