linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / snapshottest / default.nix
blobb20f9afff9e62e298f6c75786d04e47cc89d19ee
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , fastdiff
5 , six
6 , termcolor
7 , pytestCheckHook
8 , pytest-cov
9 , django
12 buildPythonPackage rec {
13   pname = "snapshottest";
14   version = "0.6.0";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "0g35ggqw4jd9zmazw55kj6gfjdghv49qx4jw5q231qyqj8fzijmv";
19   };
21   propagatedBuildInputs = [ fastdiff six termcolor ];
23   checkInputs = [ django pytestCheckHook pytest-cov ];
25   pythonImportsCheck = [ "snapshottest" ];
27   meta = with lib; {
28     description = "Snapshot testing for pytest, unittest, Django, and Nose";
29     homepage = "https://github.com/syrusakbary/snapshottest";
30     license = licenses.mit;
31     maintainers = with maintainers; [ SuperSandro2000 ];
32   };