Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / appnope / default.nix
blobbb72bbc8e73e616f7df3628b58d202a2f8c08b49
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "appnope";
9   version = "0.1.3";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "minrk";
14     repo = "appnope";
15     rev = version;
16     hash = "sha256-JYzNOPD1ofOrtZK5TTKxbF1ausmczsltR7F1Vwss8Sw=";
17   };
19   checkInputs = [
20     pytestCheckHook
21   ];
23   meta = {
24     description = "Disable App Nap on macOS";
25     homepage = "https://github.com/minrk/appnope";
26     license = lib.licenses.bsd3;
27     maintainers = with lib.maintainers; [ OPNA2608 ];
28     # Not Darwin-specific because dummy fallback may be used cross-platform
29   };