nixpkgs/pkgs/development/python-modules/csvw/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.4 KiB
Nix
Raw Normal View History

2020-06-08 01:33:42 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonAtLeast
2021-05-09 00:59:09 +00:00
, pythonOlder
2020-06-08 01:33:42 +00:00
, attrs
, isodate
, python-dateutil
2020-06-08 01:33:42 +00:00
, rfc3986
, uritemplate
, pytestCheckHook
, pytest-mock
}:
buildPythonPackage rec {
pname = "csvw";
2021-05-09 00:59:09 +00:00
version = "1.11.0";
format = "setuptools";
2021-05-09 00:59:09 +00:00
disabled = pythonOlder "3.6";
2020-06-08 01:33:42 +00:00
src = fetchFromGitHub {
owner = "cldf";
repo = "csvw";
rev = "v${version}";
2021-05-09 00:59:09 +00:00
sha256 = "1393xwqawaxsflbq62vks92vv4zch8p6dd1mdvdi7j4vvf0zljkg";
2020-06-08 01:33:42 +00:00
};
propagatedBuildInputs = [
attrs
isodate
python-dateutil
2020-06-08 01:33:42 +00:00
rfc3986
uritemplate
];
nativeCheckInputs = [
2020-06-08 01:33:42 +00:00
pytestCheckHook
pytest-mock
];
patchPhase = ''
substituteInPlace setup.cfg \
--replace "--cov" ""
'';
2021-05-13 16:37:35 +00:00
disabledTests = [
# this test is flaky on darwin because it depends on the resolution of filesystem mtimes
# https://github.com/cldf/csvw/blob/45584ad63ff3002a9b3a8073607c1847c5cbac58/tests/test_db.py#L257
"test_write_file_exists"
] ++ lib.optionals (pythonAtLeast "3.10") [
# https://github.com/cldf/csvw/issues/58
"test_roundtrip_escapechar"
"test_escapequote_escapecharquotechar_final"
"test_doubleQuote"
];
pythonImportsCheck = [
"csvw"
2021-05-13 16:37:35 +00:00
];
2020-06-08 01:33:42 +00:00
meta = with lib; {
description = "CSV on the Web";
homepage = "https://github.com/cldf/csvw";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};
}