Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyrect / default.nix
blob0d61a2e182a0f97a179a08a6d4120ea97e6815a9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pygame
6 }:
8 buildPythonPackage rec {
9   pname = "pyrect";
10   version = "0.2.0";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "PyRect";
15     inherit version;
16     hash = "sha256-9lFV9t+bkptnyv+9V8CUfFrlRJ07WA0XgHS/+0egm3g=";
17   };
19   nativeCheckInputs = [ pytestCheckHook pygame ];
21   preCheck = ''
22     export LC_ALL="en_US.UTF-8"
23   '';
25   pythonImportsCheck = [ "pyrect" ];
27   meta = with lib; {
28     description = "Simple module with a Rect class for Pygame-like rectangular areas";
29     homepage = "https://github.com/asweigart/pyrect";
30     license = licenses.bsd3;
31     maintainers = with maintainers; [ lucasew ];
32   };