tmuxPlugins.catppucin: unstable-2024-05-16 -> 2.1.2 (#379030)
[NixPkgs.git] / pkgs / development / python-modules / xboxapi / default.nix
blob49ea1ec581b5c67f4fe66290dd71fcef63d7f873
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6   requests,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "xboxapi";
12   version = "2.0.1";
13   pyproject = true;
15   src = fetchFromGitHub {
16     owner = "mKeRix";
17     repo = "xboxapi-python";
18     tag = version;
19     hash = "sha256-rX3lrXzUYqyRyI89fbCEEMevTdi5SBgSp8XxSanasII=";
20   };
22   build-system = [ setuptools ];
24   dependencies = [ requests ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   pythonImportsCheck = [ "xboxapi" ];
30   meta = with lib; {
31     description = "Python XBOX One API wrapper";
32     homepage = "https://github.com/mKeRix/xboxapi-python";
33     license = licenses.mit;
34     maintainers = with maintainers; [ fab ];
35   };