Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mcuuid / default.nix
blob39236f792be769c3a9864817ce01019a5efc604d
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "mcuuid";
9   version = "1.1.0";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "clerie";
14     repo = "mcuuid";
15     rev = "refs/tags/${version}";
16     hash = "sha256-YwM7CdZVXpUXKXUzFL3AtoDhekLDIvZ/q8taLsHihNk=";
17   };
19   propagatedBuildInputs = [
20     requests
21   ];
23   # upstream code does not provide tests
24   doCheck = false;
26   pythonImportsCheck = [
27     "mcuuid"
28   ];
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   };