mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 09:56:13 +03:00
pythonPackages.fints: init at 2.0.0
This commit is contained in:
parent
16071bb5cd
commit
49406530b6
25
pkgs/development/python-modules/fints/default.nix
Normal file
25
pkgs/development/python-modules/fints/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi,
|
||||||
|
requests, mt-940, sepaxml, bleach, isPy3k }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "2.0.0";
|
||||||
|
pname = "fints";
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1jja83h0ld55djiphcxdz64z5qp3w94204bfbgg65v5ybw0vpqq1";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests mt-940 sepaxml bleach ];
|
||||||
|
|
||||||
|
# no tests included in PyPI package
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/raphaelm/python-fints/;
|
||||||
|
description = "Pure-python FinTS (formerly known as HBCI) implementation";
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
maintainers = with maintainers; [ elohmeier ];
|
||||||
|
};
|
||||||
|
}
|
@ -358,6 +358,8 @@ in {
|
|||||||
|
|
||||||
filterpy = callPackage ../development/python-modules/filterpy { };
|
filterpy = callPackage ../development/python-modules/filterpy { };
|
||||||
|
|
||||||
|
fints = callPackage ../development/python-modules/fints { };
|
||||||
|
|
||||||
fire = callPackage ../development/python-modules/fire { };
|
fire = callPackage ../development/python-modules/fire { };
|
||||||
|
|
||||||
fdint = callPackage ../development/python-modules/fdint { };
|
fdint = callPackage ../development/python-modules/fdint { };
|
||||||
|
Loading…
Reference in New Issue
Block a user