mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
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>
34 lines
648 B
Nix
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 ];
|
|
};
|
|
}
|