2018-12-19 09:23:40 +00:00
|
|
|
{ buildPythonPackage, stdenv, pyyaml, pytest, enum34
|
2019-02-16 08:02:30 +00:00
|
|
|
, pytestpep8, pytest-flakes, fetchFromGitHub, isPy3k, lib, glibcLocales
|
2018-03-11 14:36:26 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-01-11 11:50:16 +00:00
|
|
|
version = "4.13.0";
|
2018-12-19 09:23:40 +00:00
|
|
|
pname = "mt-940";
|
2018-03-11 14:36:26 +00:00
|
|
|
|
2019-01-11 11:50:16 +00:00
|
|
|
# No tests in PyPI tarball
|
2018-03-11 14:36:26 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "WoLpH";
|
2018-12-19 09:23:40 +00:00
|
|
|
repo = "mt940";
|
2018-05-28 13:59:57 +01:00
|
|
|
rev = "v${version}";
|
2019-01-11 11:50:16 +00:00
|
|
|
sha256 = "0p6z4ipj0drph3ryn8mnb3xn0vjfv54y1c5w5i9ixrxwz48h6bga";
|
2018-03-11 14:36:26 +00:00
|
|
|
};
|
|
|
|
|
2018-12-19 09:23:40 +00:00
|
|
|
postPatch = ''
|
|
|
|
# No coverage report
|
|
|
|
sed -i "/--\(no-\)\?cov/d" pytest.ini
|
|
|
|
'';
|
2018-03-11 14:36:26 +00:00
|
|
|
|
2018-12-19 09:23:40 +00:00
|
|
|
propagatedBuildInputs = lib.optional (!isPy3k) enum34;
|
2018-03-11 14:36:26 +00:00
|
|
|
|
|
|
|
LC_ALL="en_US.UTF-8";
|
|
|
|
|
2019-02-16 08:02:30 +00:00
|
|
|
checkInputs = [ pyyaml pytestpep8 pytest-flakes pytest glibcLocales ];
|
2018-12-19 09:23:40 +00:00
|
|
|
|
2018-03-11 14:36:26 +00:00
|
|
|
checkPhase = ''
|
2019-01-11 11:50:16 +00:00
|
|
|
py.test
|
2018-03-11 14:36:26 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A library to parse MT940 files and returns smart Python collections for statistics and manipulation";
|
2018-12-19 09:23:40 +00:00
|
|
|
inherit (src.meta) homepage;
|
2018-03-11 14:36:26 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|