pythonPackages.ofxparse: 0.20 -> 0.20-unstable-2020-02-05

This commit is contained in:
Damien Cassou 2021-05-08 09:23:46 +02:00 committed by Jonathan Ringer
parent 28f51d7757
commit 24ae699505

View file

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