about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyrect/default.nix
blob: e8041786b07b9ac9abf831aaec741f0714bc50a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchPypi
, tox
, pytestCheckHook
, pygame
}:
buildPythonPackage rec {
  pname = "PyRect";
  version = "0.1.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-Oy+nNTzjKhGqawoVSVlo0qdjQjyJR64ki5LAN9704gI=";
  };

  checkInputs = [ tox pytestCheckHook pygame ];
  pythonImportsCheck = [ "pyrect" ];
  preCheck = ''
    export LC_ALL="en_US.UTF-8"
  '';

  meta = with lib; {
    description = "Simple module with a Rect class for Pygame-like rectangular areas";
    homepage = "https://github.com/asweigart/pyrect";
    license = licenses.bsd3;
    maintainers = with maintainers; [ lucasew ];
  };
}