Merge pull request #289282 from xbreak/osc-keyring
python3Packages.osc: Enable keyring support
This commit is contained in:
commit
48422449b8
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
, lib
|
||||
, rpm
|
||||
, urllib3
|
||||
, keyring
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -23,7 +24,7 @@ buildPythonPackage rec {
|
|||
|
||||
buildInputs = [ bashInteractive ]; # needed for bash-completion helper
|
||||
nativeCheckInputs = [ rpm diffstat ];
|
||||
propagatedBuildInputs = [ urllib3 cryptography ];
|
||||
propagatedBuildInputs = [ urllib3 cryptography keyring ];
|
||||
|
||||
postInstall = ''
|
||||
install -D -m444 contrib/osc.fish $out/etc/fish/completions/osc.fish
|
||||
|
|
Loading…
Reference in a new issue