depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-plt/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

30 lines
677 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, matplotlib
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-plt";
version = "1.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-IkTNlierFXIG9WSVUfVoirfQ6z7JOYlCaa5NhnBSuxc=";
};
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 ];
};
}