pythonPackages.ofxtools: refactor move to python-modules
This commit is contained in:
parent
5083413b00
commit
b67cc15b3e
30
pkgs/development/python-modules/ofxtools/default.nix
Normal file
30
pkgs/development/python-modules/ofxtools/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, python
|
||||||
|
, sqlalchemy
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "ofxtools";
|
||||||
|
version = "0.3.8";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "88f289a60f4312a1599c38a8fb3216e2b46d10cc34476f9a16a33ac8aac7ec35";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
${python.interpreter} -m unittest discover -s ofxtools
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ sqlalchemy ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/csingley/ofxtools";
|
||||||
|
description = "Library for working with Open Financial Exchange (OFX) formatted data used by financial institutions";
|
||||||
|
license = licenses.mit;
|
||||||
|
broken = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -4415,26 +4415,7 @@ in {
|
|||||||
|
|
||||||
ofxparse = callPackage ../development/python-modules/ofxparse { };
|
ofxparse = callPackage ../development/python-modules/ofxparse { };
|
||||||
|
|
||||||
ofxtools = buildPythonPackage rec {
|
ofxtools = callPackage ../development/python-modules/ofxtools { };
|
||||||
name = "ofxtools-0.3.8";
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/o/ofxtools/${name}.tar.gz";
|
|
||||||
sha256 = "88f289a60f4312a1599c38a8fb3216e2b46d10cc34476f9a16a33ac8aac7ec35";
|
|
||||||
};
|
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
${python.interpreter} -m unittest discover -s ofxtools
|
|
||||||
'';
|
|
||||||
|
|
||||||
buildInputs = with self; [ sqlalchemy ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "https://github.com/csingley/ofxtools";
|
|
||||||
description = "Library for working with Open Financial Exchange (OFX) formatted data used by financial institutions";
|
|
||||||
license = licenses.mit;
|
|
||||||
broken = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
basemap = buildPythonPackage rec {
|
basemap = buildPythonPackage rec {
|
||||||
name = "basemap-1.0.7";
|
name = "basemap-1.0.7";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user