fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
84 lines
1.9 KiB
Nix
84 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# propagates
|
|
chardet,
|
|
regex,
|
|
packaging,
|
|
|
|
# optionals
|
|
faust-cchardet,
|
|
pandas,
|
|
tabview,
|
|
# TODO: , wilderness
|
|
|
|
# tests
|
|
python,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "clevercsv";
|
|
version = "0.8.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alan-turing-institute";
|
|
repo = "CleverCSV";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-yyPUNFDq9W5OW1muHtQ10QgAHhXI8w7CY77fsWhIy0k=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
chardet
|
|
regex
|
|
packaging
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
full = [
|
|
faust-cchardet
|
|
pandas
|
|
tabview
|
|
# TODO: wilderness
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ] ++ passthru.optional-dependencies.full;
|
|
|
|
pythonImportsCheck = [
|
|
"clevercsv"
|
|
"clevercsv.cparser"
|
|
];
|
|
|
|
preCheck = ''
|
|
# by linking the installed version the tests also have access to compiled native libraries
|
|
rm -r clevercsv
|
|
ln -s $out/${python.sitePackages}/clevercsv/ clevercsv
|
|
'';
|
|
|
|
# their ci only runs unit tests, there are also integration and fuzzing tests
|
|
pytestFlagsArray = [ "./tests/test_unit" ];
|
|
|
|
disabledTestPaths = [
|
|
# ModuleNotFoundError: No module named 'wilderness'
|
|
"tests/test_unit/test_console.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CleverCSV is a Python package for handling messy CSV files";
|
|
mainProgram = "clevercsv";
|
|
longDescription = ''
|
|
CleverCSV is a Python package for handling messy CSV files. It provides
|
|
a drop-in replacement for the builtin CSV module with improved dialect
|
|
detection, and comes with a handy command line application for working
|
|
with CSV files.
|
|
'';
|
|
homepage = "https://github.com/alan-turing-institute/CleverCSV";
|
|
changelog = "https://github.com/alan-turing-institute/CleverCSV/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|