about summary refs log tree commit diff
path: root/pkgs/development/python-modules/snapshottest/default.nix
blob: a36c8e48d49009f594470e6635ec767e86833872 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib
, buildPythonPackage
, fetchPypi
, fastdiff
, six
, termcolor
, pytestCheckHook
, pytest-cov
, django
}:

buildPythonPackage rec {
  pname = "snapshottest";
  version = "0.6.0";

  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; [ ];
  };
}