Skip to content

Commit

Permalink
Merge pull request NixOS#289282 from xbreak/osc-keyring
Browse files Browse the repository at this point in the history
python3Packages.osc: Enable keyring support
  • Loading branch information
peti authored Feb 19, 2024
2 parents 711b0df + f5cba8e commit 4842244
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/osc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
, lib
, rpm
, urllib3
, keyring
}:

buildPythonPackage rec {
Expand All @@ -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
Expand Down

0 comments on commit 4842244

Please sign in to comment.