From 5b66c2b421c6dbad083d5fb0e3d8b011b058c35e Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Mon, 5 Mar 2018 12:25:42 +0100 Subject: [PATCH] pythonPackages.mt-940: init at 4.10.0. --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 78db1f67b808..b513288da69c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5531,6 +5531,25 @@ in { }; }; + mt-940 = buildPythonPackage rec { + version = "4.10.0"; + name = "mt-940-${version}"; + + src = pkgs.fetchurl { + url = "mirror://pypi/m/mt-940/mt-940-${version}.tar.gz"; + sha256 = "1gyqf1k2r2ml45x08bk69ws865yrpcph514mn4xvjz779mlgh67j"; + }; + + buildInputs = with self; [ pytestrunner pyyaml pytest ]; + doCheck = false; # Can't find data files + + meta = { + description = "A library to parse MT940 files and returns smart Python collections for statistics and manipulation"; + homepage = "http://pythonhosted.org/mt-940/"; + license = licenses.bsd3; + }; + }; + mwlib = let pyparsing = buildPythonPackage rec { name = "pyparsing-1.5.7";