alvr: 20.11.1 -> 20.12.1 (#374869)
[NixPkgs.git] / pkgs / development / python-modules / chess / default.nix
blob87666e64d2bd496e37639c7be04f4c614b4d9c89
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   pythonOlder,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "chess";
12   version = "1.11.1";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "niklasf";
19     repo = "python-${pname}";
20     tag = "v${version}";
21     hash = "sha256-OAYQ/XtM4AHfbpA+gVa/AjB3tyMtvgykpHc39WaU2CI=";
22   };
24   build-system = [ setuptools ];
26   pythonImportsCheck = [ "chess" ];
28   nativeCheckInputs = [ pytestCheckHook ];
30   pytestFlagsArray = [ "test.py" ];
32   meta = with lib; {
33     description = "Chess library with move generation, move validation, and support for common formats";
34     homepage = "https://github.com/niklasf/python-chess";
35     changelog = "https://github.com/niklasf/python-chess/blob/v${version}/CHANGELOG.rst";
36     license = licenses.gpl3Plus;
37     maintainers = with maintainers; [ smancill ];
38   };