Skip to content

Commit

Permalink
python312Packages.pytest-textual-snapshot: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gepbird committed Mar 8, 2025
1 parent df94afb commit 8edf669
Showing 1 changed file with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
{
lib,
buildPythonPackage,
python,
pythonOlder,
fetchFromGitHub,

# build-system
poetry-core,

# dependencies
jinja2,
pytest,
rich,
pythonOlder,
syrupy,
textual,
python,

# tests
pytest,
}:

buildPythonPackage rec {
Expand Down Expand Up @@ -50,11 +56,11 @@ buildPythonPackage rec {
cp -r resources $out/${python.sitePackages}/
'';

meta = with lib; {
meta = {
description = "Snapshot testing for Textual applications";
homepage = "https://github.com/Textualize/pytest-textual-snapshot";
changelog = "https://github.com/Textualize/pytest-textual-snapshot/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}

0 comments on commit 8edf669

Please sign in to comment.