Merge pull request #128203 from DamienCassou/update-ledger-autosync-1.0.3

Update ledger-autosync to 1.0.3
This commit is contained in:
Damien Cassou 2021-06-27 09:54:22 +02:00 committed by GitHub
commit ffc3a456a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 36 deletions

View File

@ -1,23 +1,27 @@
{ lib, python3Packages, fetchFromGitHub, ledger, hledger, useLedger ? true, useHledger ? true }:
{ lib
, python3Packages
, fetchFromGitHub
, ledger
, hledger
, useLedger ? true
, useHledger ? true
}:
python3Packages.buildPythonApplication rec {
pname = "ledger-autosync";
version = "unstable-2021-04-01";
version = "1.0.3";
format = "pyproject";
# no tests included in PyPI tarball
src = fetchFromGitHub {
owner = "egh";
repo = "ledger-autosync";
rev = "0b674c57c833f75b1a36d8caf78e1567c8e2180c";
sha256 = "0q404gr85caib5hg83cnmgx4684l72w9slxyxrwsiwhlf7gm443q";
rev = "v${version}";
sha256 = "0n3y4qxsv1cyvyap95h3rj4bj1sinyfgsajygm7s8di3j5aabqr2";
};
patches = [
# ledger-autosync specifies an URL for its ofxparse
# dependency. This patch removes the URL to only use the
# `ofxparse` name. This works because nixpkgs' version of ofxparse
# is more recent than the latest release.
./fix-ofxparse-dependency.patch
nativeBuildInputs = with python3Packages; [
poetry-core
];
propagatedBuildInputs = with python3Packages; [
@ -45,10 +49,14 @@ python3Packages.buildPythonApplication rec {
# Checks require ledger as a python package,
# ledger does not support python3 while ledger-autosync requires it.
checkInputs = with python3Packages; [ ledger hledger nose mock ];
checkPhase = ''
nosetests -a generic -a ledger -a hledger
'';
checkInputs = with python3Packages; [ ledger hledger nose mock pytestCheckHook ];
# Disable some non-passing tests:
# https://github.com/egh/ledger-autosync/issues/127
disabledTests = [
"test_payee_match"
"test_args_only"
];
meta = with lib; {
homepage = "https://github.com/egh/ledger-autosync";

View File

@ -1,13 +0,0 @@
diff --git a/setup.py b/setup.py
index eda6db5..ed6b90b 100644
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,7 @@ setup(
install_requires=[
'setuptools>=26',
'ofxclient',
- "ofxparse @ https://github.com/jseutter/ofxparse/tarball/3236cfd96434feb6bc79a8b66f3400f18e2ad3c4"
+ 'ofxparse'
],
extras_require={

View File

@ -1,6 +1,6 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchPypi
, six
, beautifulsoup4
, lxml
@ -8,15 +8,11 @@
buildPythonPackage rec {
pname = "ofxparse";
version = "unstable-2020-02-05";
version = "0.21";
# The newer changes haven't been released yet and ledger-autosync
# depends on them:
src = fetchFromGitHub {
owner = "jseutter";
repo = "ofxparse";
rev = "3236cfd96434feb6bc79a8b66f3400f18e2ad3c4";
sha256 = "1rkp174102q7hwjrg3na0qnfd612xb3r360b9blkbprjhzxy7gr7";
src = fetchPypi {
inherit pname version;
sha256 = "19y4sp5l9jqiqzzlbqdfiab42qx7d84n4xm4s7jfq397666vcyh5";
};
propagatedBuildInputs = [ six beautifulsoup4 lxml ];