From 9200ec0f379b63b8f02226e95ae8f42995bf6f1e Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Tue, 18 Jan 2022 19:12:17 -0500 Subject: [PATCH] python: Remove python prefix from python-ledger-autosync * rekahsoft-gnu/packages/python-xyz.scm (inputs): Use input list instead of alist, an inputs instead of propagated inputs, as this is a python application, not a library. --- rekahsoft-gnu/packages/python-xyz.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rekahsoft-gnu/packages/python-xyz.scm b/rekahsoft-gnu/packages/python-xyz.scm index 071cc2f..4b949a0 100644 --- a/rekahsoft-gnu/packages/python-xyz.scm +++ b/rekahsoft-gnu/packages/python-xyz.scm @@ -461,9 +461,9 @@ Amazon Web Services (AWS) API."))) (description "OFX client for dowloading transactions from banks") (license license:expat))) -(define-public python-ledger-autosync +(define-public ledger-autosync (package - (name "python-ledger-autosync") + (name "ledger-autosync") (version "1.0.3") (source (origin @@ -472,9 +472,9 @@ Amazon Web Services (AWS) API."))) (sha256 (base32 "0i4942qbsphq72zx7kd3rgw25rpq4fg4vl43akkl189wzcrgwv6j")))) (build-system python-build-system) - (propagated-inputs - `(("python-ofxclient" ,python-ofxclient) - ("python-ofxparse" ,python-ofxparse))) + (inputs + (list python-ofxclient + python-ofxparse)) (home-page "https://gitlab.com/egh/ledger-autosync") (synopsis "Automatically sync your bank's data with ledger") (description "Automatically sync your bank's data with ledger")