mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
34 lines
714 B
Nix
34 lines
714 B
Nix
{ 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 ];
|
|
|
|
checkInputs = [ 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; [ SuperSandro2000 ];
|
|
};
|
|
}
|