about summary refs log tree commit diff
path: root/pkgs/development/python-modules/darkdetect/default.nix
blob: fe38977f2ac06f59287f8be61390feac64dd3442 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  lib,
  buildPythonPackage,
  pythonOlder,
  fetchFromGitHub,
  stdenv,

  glib,
  setuptools,
}:

buildPythonPackage rec {
  pname = "darkdetect";
  version = "0.8.0";
  pyproject = true;

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "albertosottile";
    repo = "darkdetect";
    rev = "v${version}";
    hash = "sha256-OOINgrgjSLr3L07E9zf1+mlTPr+7ZlgN3CfkWE8+LoE=";
  };

  nativeBuildInputs = [ setuptools ];

  pythonImportsCheck = [ "darkdetect" ];

  postPatch = lib.optionalString (stdenv.isLinux) ''
    substituteInPlace darkdetect/_linux_detect.py \
      --replace "'gsettings'" "'${glib.bin}/bin/gsettings'"
  '';

  meta = with lib; {
    description = "Detect OS Dark Mode from Python";
    homepage = "https://github.com/albertosottile/darkdetect";
    license = licenses.bsd3;
    maintainers = [ ];
  };
}