dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / development / python-modules / appnope / default.nix
blob19a9263a0697f2136e1a5857c04984c2d810b5dd
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "appnope";
10   version = "0.1.3";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "minrk";
15     repo = "appnope";
16     rev = version;
17     hash = "sha256-JYzNOPD1ofOrtZK5TTKxbF1ausmczsltR7F1Vwss8Sw=";
18   };
20   checkInputs = [ pytestCheckHook ];
22   meta = {
23     description = "Disable App Nap on macOS";
24     homepage = "https://github.com/minrk/appnope";
25     license = lib.licenses.bsd3;
26     maintainers = with lib.maintainers; [ OPNA2608 ];
27     # Not Darwin-specific because dummy fallback may be used cross-platform
28   };