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: e8f20bfc8dd7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d8d68e1af16e
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 6, 2019

  1. fava: 1.10 -> 1.11

    AluisioASG authored and FRidh committed Sep 6, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d8d68e1 View commit details
Showing with 8 additions and 4 deletions.
  1. +8 −4 pkgs/applications/office/fava/default.nix
12 changes: 8 additions & 4 deletions pkgs/applications/office/fava/default.nix
Original file line number Diff line number Diff line change
@@ -5,15 +5,14 @@ let
in
buildPythonApplication rec {
pname = "fava";
version = "1.10";
version = "1.11";

src = fetchPypi {
inherit pname version;
sha256 = "145995nzgr06qsn619zap0xqa8ckfrp5azga41smyszq97pd01sj";
sha256 = "0gyrxqmfr8igfjnp9lcsl4km17yakj556xns3jp4m9l2407b5zhc";
};

doCheck = false;

checkInputs = [ python3.pkgs.pytest ];
propagatedBuildInputs = with python3.pkgs;
[
Babel
@@ -28,6 +27,11 @@ buildPythonApplication rec {
simplejson
];

# CLI test expects fava on $PATH. Not sure why static_url fails.
checkPhase = ''
py.test tests -k 'not cli and not static_url'
'';

meta = {
homepage = https://beancount.github.io/fava;
description = "Web interface for beancount";