12 buildPythonPackage rec {
17 disabled = lib.versionOlder python.version "3.8.1";
19 src = fetchFromGitHub {
20 owner = "syrupy-project";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-IifGufCUhjbl8Tqvcjm8XF4QPvOsRacPWxI1yT79eNs=";
26 build-system = [ poetry-core ];
28 buildInputs = [ pytest ];
38 # https://github.com/tophat/syrupy/blob/main/CONTRIBUTING.md#local-development
43 pythonImportsCheck = [ "syrupy" ];
46 changelog = "https://github.com/syrupy-project/syrupy/blob/${src.rev}/CHANGELOG.md";
47 description = "Pytest Snapshot Test Utility";
48 homepage = "https://github.com/syrupy-project/syrupy";
49 license = lib.licenses.asl20;
50 maintainers = with lib.maintainers; [ dotlambda ];