pythonPackages.pytest-snapshot: init at 0.4.2

This commit is contained in:
Sandro Jäckel 2021-01-04 10:49:41 +01:00
parent 7cf04dc9ad
commit 74440de5ca
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchPypi, packaging, pytest, setuptools-scm }:
buildPythonPackage rec {
pname = "pytest-snapshot";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "1p33fcplfykwf5mdwg25n8hjgzxpx8w1iprjnfzibpxclfrxmy5i";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ packaging pytest ];
# pypi does not contain tests and GitHub archive is not supported because setuptools-scm can't detect the version
doCheck = false;
pythonImportsCheck = [ "pytest_snapshot" ];
meta = with lib; {
description = "A plugin to enable snapshot testing with pytest";
homepage = "https://github.com/joseph-roitman/pytest-snapshot/";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View file

@ -5946,6 +5946,8 @@ in {
pytest-services = callPackage ../development/python-modules/pytest-services { };
pytest-snapshot = callPackage ../development/python-modules/pytest-snapshot { };
pytest-shutil = callPackage ../development/python-modules/pytest-shutil { };
pytest-socket = callPackage ../development/python-modules/pytest-socket { };