depot/third_party/nixpkgs/pkgs/development/python-modules/snapshottest/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

43 lines
768 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fastdiff,
six,
termcolor,
pytestCheckHook,
pytest-cov,
django,
}:
buildPythonPackage rec {
pname = "snapshottest";
version = "0.6.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0g35ggqw4jd9zmazw55kj6gfjdghv49qx4jw5q231qyqj8fzijmv";
};
propagatedBuildInputs = [
fastdiff
six
termcolor
];
nativeCheckInputs = [
django
pytestCheckHook
pytest-cov
];
pythonImportsCheck = [ "snapshottest" ];
meta = with lib; {
description = "Snapshot testing for pytest, unittest, Django, and Nose";
homepage = "https://github.com/syrusakbary/snapshottest";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}