lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #30263 from tsaeger/tsaeger/ofxhome

pythonPackages.ofxhome: 0.3.1 -> 0.3.3

authored by

Gabriel Ebner and committed by
GitHub
9a49811f 3dbf7a44

+24 -18
+23
pkgs/development/python-modules/ofxhome/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, nose }: 2 + 3 + buildPythonPackage rec { 4 + name = "${pname}-${version}"; 5 + version = "0.3.3"; 6 + pname = "ofxhome"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "1rpyfqr2q9pnin47rjd4qapl8ngk1m9jx36iqckhdhr8s8gla445"; 11 + }; 12 + 13 + buildInputs = [ nose ]; 14 + 15 + # ImportError: No module named tests 16 + doCheck = false; 17 + 18 + meta = with stdenv.lib; { 19 + homepage = "https://github.com/captin411/ofxhome"; 20 + description = "ofxhome.com financial institution lookup REST client"; 21 + license = licenses.mit; 22 + }; 23 + }
+1 -18
pkgs/top-level/python-packages.nix
··· 19175 19175 19176 19176 ofxclient = callPackage ../development/python-modules/ofxclient {}; 19177 19177 19178 - ofxhome = buildPythonPackage rec { 19179 - name = "ofxhome-0.3.1"; 19180 - src = pkgs.fetchurl { 19181 - url = "mirror://pypi/o/ofxhome/${name}.tar.gz"; 19182 - sha256 = "0000db437fd1a8c7c65cea5d88ce9d3b54642a1f4844dde04f860e29330ac68d"; 19183 - }; 19184 - 19185 - buildInputs = with self; [ nose ]; 19186 - 19187 - # ImportError: No module named tests 19188 - doCheck = false; 19189 - 19190 - meta = { 19191 - homepage = "https://github.com/captin411/ofxhome"; 19192 - description = "ofxhome.com financial institution lookup REST client"; 19193 - license = licenses.mit; 19194 - }; 19195 - }; 19178 + ofxhome = callPackage ../development/python-modules/ofxhome { }; 19196 19179 19197 19180 ofxparse = buildPythonPackage rec { 19198 19181 name = "ofxparse-0.14";