blob: 94c7aa68cd576824d4fb7195e93c3de468694d31 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
stdenv,
glib,
setuptools,
}:
buildPythonPackage rec {
pname = "darkdetect";
version = "0.8.0";
pyproject = true;
src = fetchFromGitHub {
owner = "albertosottile";
repo = "darkdetect";
rev = "v${version}";
hash = "sha256-OOINgrgjSLr3L07E9zf1+mlTPr+7ZlgN3CfkWE8+LoE=";
};
nativeBuildInputs = [ setuptools ];
pythonImportsCheck = [ "darkdetect" ];
postPatch = lib.optionalString (stdenv.hostPlatform.isLinux) ''
substituteInPlace darkdetect/_linux_detect.py \
--replace "'gsettings'" "'${glib.bin}/bin/gsettings'"
'';
meta = {
description = "Detect OS Dark Mode from Python";
homepage = "https://github.com/albertosottile/darkdetect";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|