lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.fivem-api: init at 0.1.2

+44
+42
pkgs/development/python-modules/fivem-api/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchPypi 5 + , pythonOlder 6 + , setuptools-scm 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "fivem-api"; 11 + version = "0.1.2"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 15 + 16 + src = fetchPypi { 17 + inherit pname version; 18 + hash = "sha256-6llrMGWbDRmysEw+B6B115hLS5xlktQEXiSHzPLbV5s="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + setuptools-scm 23 + ]; 24 + 25 + propagatedBuildInputs = [ 26 + aiohttp 27 + ]; 28 + 29 + # Module has no tests 30 + doCheck = false; 31 + 32 + pythonImportsCheck = [ 33 + "fivem" 34 + ]; 35 + 36 + meta = with lib; { 37 + description = "Module for interacting with FiveM servers"; 38 + homepage = "https://github.com/Sander0542/fivem-api"; 39 + license = licenses.mit; 40 + maintainers = with maintainers; [ fab ]; 41 + }; 42 + }
+2
pkgs/top-level/python-packages.nix
··· 2930 2930 2931 2931 fitbit = callPackage ../development/python-modules/fitbit { }; 2932 2932 2933 + fivem-api = callPackage ../development/python-modules/fivem-api { }; 2934 + 2933 2935 fixerio = callPackage ../development/python-modules/fixerio { }; 2934 2936 2935 2937 fixtures = callPackage ../development/python-modules/fixtures { };