mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #219211 from kalbasit/libagent-fix-gpgconf-path
This commit is contained in:
commit
0749042bfa
1 changed files with 8 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
, cryptography
|
||||
, ed25519
|
||||
, ecdsa
|
||||
, gnupg
|
||||
, semver
|
||||
, mnemonic
|
||||
, unidecode
|
||||
|
@ -30,6 +31,13 @@ buildPythonPackage rec {
|
|||
sha256 = "sha256-RISAy0efdatr9u4CWNRGnlffkC8ksw1NyRpJWKwqz+s=";
|
||||
};
|
||||
|
||||
# hardcode the path to gpgconf in the libagent library
|
||||
postPatch = ''
|
||||
substituteInPlace libagent/gpg/keyring.py \
|
||||
--replace "util.which('gpgconf')" "'${gnupg}/bin/gpgconf'" \
|
||||
--replace "'gpg-connect-agent'" "'${gnupg}/bin/gpg-connect-agent'"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
unidecode
|
||||
backports-shutil-which
|
||||
|
|
Loading…
Reference in a new issue