Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 41582c7a0232
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 216237e349db
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 19, 2020

  1. howdoi: fix Darwin build dependencies

    Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
    siriobalmelli committed Apr 19, 2020
    Copy the full SHA
    0e48a68 View commit details
  2. howdoi: cachelib and appdirs dependencies _also_ needed for Linux.

    Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
    siriobalmelli committed Apr 19, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    85501ca View commit details

Commits on Apr 20, 2020

  1. Copy the full SHA
    216237e View commit details
Showing with 3 additions and 1 deletion.
  1. +3 −1 pkgs/development/python-modules/howdoi/default.nix
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/howdoi/default.nix
Original file line number Diff line number Diff line change
@@ -5,6 +5,8 @@
, requests-cache
, pygments
, pyquery
, cachelib
, appdirs
}:

buildPythonPackage rec {
@@ -16,7 +18,7 @@ buildPythonPackage rec {
sha256 = "3b322668606d29d8a841c3b28c0574851f512b55c33a7ceb982b6a98d82fa3e3";
};

propagatedBuildInputs = [ six requests-cache pygments pyquery ];
propagatedBuildInputs = [ six requests-cache pygments pyquery cachelib appdirs ];

preCheck = ''
export HOME=$(mktemp -d)