lol
0
fork

Configure Feed

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

python311Packages.mcuuid: init at 1.1.0

clerie f84fcfd0 f0b0a2fa

+38
+36
pkgs/development/python-modules/mcuuid/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , requests 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "mcuuid"; 9 + version = "1.1.0"; 10 + format = "setuptools"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "clerie"; 14 + repo = "mcuuid"; 15 + rev = "refs/tags/${version}"; 16 + hash = "sha256-YwM7CdZVXpUXKXUzFL3AtoDhekLDIvZ/q8taLsHihNk="; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + requests 21 + ]; 22 + 23 + # upstream code does not provide tests 24 + doCheck = false; 25 + 26 + pythonImportsCheck = [ 27 + "mcuuid" 28 + ]; 29 + 30 + meta = with lib; { 31 + description = "Getting Minecraft player information from Mojang API"; 32 + homepage = "https://github.com/clerie/mcuuid"; 33 + license = with licenses; [ mit ]; 34 + maintainers = with maintainers; [ clerie ]; 35 + }; 36 + }
+2
pkgs/top-level/python-packages.nix
··· 6498 6498 6499 6499 mcstatus = callPackage ../development/python-modules/mcstatus { }; 6500 6500 6501 + mcuuid = callPackage ../development/python-modules/mcuuid { }; 6502 + 6501 6503 md-toc = callPackage ../development/python-modules/md-toc { }; 6502 6504 6503 6505 mdx-truly-sane-lists = callPackage ../development/python-modules/mdx-truly-sane-lists { };