diff options
Diffstat (limited to 'pkgs/development/python-modules/snapshottest/default.nix')
-rw-r--r-- | pkgs/development/python-modules/snapshottest/default.nix | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/snapshottest/default.nix b/pkgs/development/python-modules/snapshottest/default.nix index b19873318fd7..244a1627f11c 100644 --- a/pkgs/development/python-modules/snapshottest/default.nix +++ b/pkgs/development/python-modules/snapshottest/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchPypi -, fastdiff -, six -, termcolor -, pytestCheckHook -, pytest-cov -, django +{ + lib, + buildPythonPackage, + fetchPypi, + fastdiff, + six, + termcolor, + pytestCheckHook, + pytest-cov-stub, + django, }: buildPythonPackage rec { @@ -19,9 +20,17 @@ buildPythonPackage rec { sha256 = "0g35ggqw4jd9zmazw55kj6gfjdghv49qx4jw5q231qyqj8fzijmv"; }; - propagatedBuildInputs = [ fastdiff six termcolor ]; + propagatedBuildInputs = [ + fastdiff + six + termcolor + ]; - nativeCheckInputs = [ django pytestCheckHook pytest-cov ]; + nativeCheckInputs = [ + django + pytestCheckHook + pytest-cov-stub + ]; pythonImportsCheck = [ "snapshottest" ]; @@ -29,6 +38,6 @@ buildPythonPackage rec { description = "Snapshot testing for pytest, unittest, Django, and Nose"; homepage = "https://github.com/syrusakbary/snapshottest"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |