58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, attrs
|
|
, isodate
|
|
, dateutil
|
|
, rfc3986
|
|
, uritemplate
|
|
, mock
|
|
, pytestCheckHook
|
|
, pytest-mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "csvw";
|
|
version = "1.11.0";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cldf";
|
|
repo = "csvw";
|
|
rev = "v${version}";
|
|
sha256 = "1393xwqawaxsflbq62vks92vv4zch8p6dd1mdvdi7j4vvf0zljkg";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace setup.cfg --replace "--cov" ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
attrs
|
|
isodate
|
|
dateutil
|
|
rfc3986
|
|
uritemplate
|
|
];
|
|
|
|
checkInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
pytest-mock
|
|
];
|
|
|
|
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"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CSV on the Web";
|
|
homepage = "https://github.com/cldf/csvw";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|