depot/third_party/nixpkgs/pkgs/development/python-modules/darkdetect/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

41 lines
866 B
Nix

{
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.hostPlatform.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 = [ ];
};
}