Merge pull request #24875 from matthiasbeyer/update-fava
fava: 1.2 -> 1.3
This commit is contained in:
commit
d4d00f8c59
@ -1,13 +1,13 @@
|
|||||||
{ stdenv, fetchhg, pkgs, pythonPackages }:
|
{ stdenv, fetchhg, pkgs, pythonPackages }:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
version = "2.0b13";
|
version = "2.0b15";
|
||||||
name = "beancount-${version}";
|
name = "beancount-${version}";
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "mirror://pypi/b/beancount/${name}.tar.gz";
|
url = "mirror://pypi/b/beancount/${name}.tar.gz";
|
||||||
sha256 = "16gkcq28bwd015b1qhdr5d7vhxid8xfn6ia4n9n8dnl5n448yqkm";
|
sha256 = "1dvnpgja4v4k5zagfsmdjavlib0z3r9r4z197yvj86szhzs0z86k";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with pythonPackages; [ nose ];
|
buildInputs = with pythonPackages; [ nose ];
|
||||||
|
@ -1,17 +1,19 @@
|
|||||||
{ stdenv, pkgs, fetchurl, python3Packages, fetchFromGitHub, fetchzip, python3, beancount }:
|
{ stdenv, pkgs, fetchurl, python3Packages, fetchFromGitHub, fetchzip, python3, beancount }:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
version = "1.2";
|
version = "1.3";
|
||||||
name = "fava-${version}";
|
name = "fava-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/beancount/fava/archive/v${version}.tar.gz";
|
owner = "beancount";
|
||||||
sha256 = "0sykx054w4cvr0pgbqph0lmkxffafl83k5ir252gl5znxgcvg6yw";
|
repo = "fava";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0g0aj0qcmpny6dipi00nks7h3mf5a4jfd6bxjm1rb5807wswcpg8";
|
||||||
};
|
};
|
||||||
|
|
||||||
assets = fetchzip {
|
assets = fetchzip {
|
||||||
url = "https://github.com/beancount/fava/releases/download/v${version}/beancount-fava-${version}.tar.gz";
|
url = "https://github.com/beancount/fava/releases/download/v${version}/fava-${version}.tar.gz";
|
||||||
sha256 = "1lk6s3s6xvvwbcbkr1qpr9bqdgwspk3vms25zjd6xcs21s3hchmp";
|
sha256 = "0yn2psbn436g1w5ixn94z8ca6dfd54izg98979arn0k7slpiccvz";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with python3Packages; [ pytest_30 ];
|
buildInputs = with python3Packages; [ pytest_30 ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user