python312Packages.syrupy: 4.6.1 -> 4.7.1

Diff: https://github.com/tophat/syrupy/compare/refs/tags/v4.6.1...v4.7.1

Changelog: https://github.com/tophat/syrupy/releases/tag/v4.7.1
This commit is contained in:
Robert Schütz 2024-08-28 09:58:32 -07:00
parent 8a2f45a81f
commit 1fbcc232c1

View File

@ -5,30 +5,27 @@
python,
poetry-core,
pytest,
colored,
invoke,
}:
buildPythonPackage rec {
pname = "syrupy";
version = "4.6.1";
format = "pyproject";
version = "4.7.1";
pyproject = true;
disabled = lib.versionOlder python.version "3.8.1";
src = fetchFromGitHub {
owner = "tophat";
owner = "syrupy-project";
repo = "syrupy";
rev = "refs/tags/v${version}";
hash = "sha256-NBJJqQsZqqKHOdqGa/j/2KQvlenLCEJBqlfdjtFK00U=";
hash = "sha256-dTUugNqzaMuKV6ZwxRSf9df7tsnmZUBhgqwgGxBhirw=";
};
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
buildInputs = [ pytest ];
propagatedBuildInputs = [ colored ];
nativeCheckInputs = [
invoke
pytest
@ -43,11 +40,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "syrupy" ];
meta = with lib; {
changelog = "https://github.com/tophat/syrupy/releases/tag/v${version}";
meta = {
changelog = "https://github.com/syrupy-project/syrupy/blob/${src.rev}/CHANGELOG.md";
description = "Pytest Snapshot Test Utility";
homepage = "https://github.com/tophat/syrupy";
license = licenses.asl20;
maintainers = [ ];
homepage = "https://github.com/syrupy-project/syrupy";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}