91 lines
2.3 KiB
Nix
91 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
dbus,
|
|
gnupg,
|
|
coreutils,
|
|
nixosTests,
|
|
nix-update-script,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "pass-secret-service";
|
|
# PyPI has old alpha version. Since then the project has switched from using a
|
|
# seemingly abandoned D-Bus package pydbus and started using maintained
|
|
# dbus-next. So let's use latest from GitHub.
|
|
version = "0-unstable-2023-12-16";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mdellweg";
|
|
repo = "pass_secret_service";
|
|
rev = "6335c85d9a790a6472e3de6eff87a15208caa5dc";
|
|
hash = "sha256-SSmI3HJCUWuwFXCu3Zg66X18POlzp3ADRj7HeE8GRio=";
|
|
};
|
|
|
|
# Need to specify session.conf file for tests because it won't be found under
|
|
# /etc/ in check phase.
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace-fail "dbus-run-session" "dbus-run-session --config-file=${dbus}/share/dbus-1/session.conf" \
|
|
--replace-fail '-p $(relpassstore)' '-p $(PASSWORD_STORE_DIR)'
|
|
|
|
substituteInPlace systemd/org.freedesktop.secrets.service \
|
|
--replace-fail "/bin/false" "${coreutils}/bin/false"
|
|
substituteInPlace systemd/dbus-org.freedesktop.secrets.service \
|
|
--replace-fail "/usr/local" "$out"
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/share/dbus-1/services/" "$out/lib/systemd/user/"
|
|
cp systemd/org.freedesktop.secrets.service "$out/share/dbus-1/services/"
|
|
cp systemd/dbus-org.freedesktop.secrets.service "$out/lib/systemd/user/"
|
|
'';
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
click
|
|
cryptography
|
|
dbus-next
|
|
decorator
|
|
pypass
|
|
secretstorage
|
|
];
|
|
|
|
nativeCheckInputs =
|
|
let
|
|
ps = python3.pkgs;
|
|
in
|
|
[
|
|
dbus
|
|
gnupg
|
|
ps.pytest
|
|
ps.pytest-asyncio
|
|
ps.pypass
|
|
];
|
|
|
|
checkTarget = "test";
|
|
|
|
pythonImportsCheck = [ "pass_secret_service" ];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
extraArgs = [ "--version=branch" ];
|
|
};
|
|
tests.pass-secret-service = nixosTests.pass-secret-service;
|
|
};
|
|
|
|
meta = {
|
|
description = "Libsecret D-Bus API with pass as the backend";
|
|
homepage = "https://github.com/mdellweg/pass_secret_service/";
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = lib.platforms.all;
|
|
mainProgram = "pass_secret_service";
|
|
maintainers = with lib.maintainers; [ jluttine ];
|
|
};
|
|
}
|