Files
nixpkgs/pkgs/development/python-modules/pyrect/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

34 lines
648 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pygame,
}:
buildPythonPackage rec {
pname = "pyrect";
version = "0.2.0";
format = "setuptools";
src = fetchPypi {
pname = "PyRect";
inherit version;
hash = "sha256-9lFV9t+bkptnyv+9V8CUfFrlRJ07WA0XgHS/+0egm3g=";
};
nativeCheckInputs = [
pytestCheckHook
pygame
];
pythonImportsCheck = [ "pyrect" ];
meta = {
description = "Simple module with a Rect class for Pygame-like rectangular areas";
homepage = "https://github.com/asweigart/pyrect";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ lucasew ];
};
}