mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
python310Packages.tablib: update meta
This commit is contained in:
parent
77b11e49fe
commit
b0d433e931
1 changed files with 11 additions and 7 deletions
|
@ -1,9 +1,12 @@
|
|||
{ buildPythonPackage, lib, fetchPypi, isPy27
|
||||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, odfpy
|
||||
, openpyxl
|
||||
, pandas
|
||||
, setuptools-scm
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
, pytest-cov
|
||||
, pyyaml
|
||||
, unicodecsv
|
||||
|
@ -23,16 +26,17 @@ buildPythonPackage rec {
|
|||
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
propagatedBuildInputs = [ xlwt openpyxl pyyaml xlrd odfpy ];
|
||||
checkInputs = [ pytest pytest-cov unicodecsv pandas ];
|
||||
checkInputs = [ pytestCheckHook pytest-cov unicodecsv pandas ];
|
||||
|
||||
# test_tablib needs MarkupPy, which isn't packaged yet
|
||||
checkPhase = ''
|
||||
pytest --ignore tests/test_tablib.py
|
||||
'';
|
||||
pytestFlagsArray = [ "--ignore=tests/test_tablib.py" ];
|
||||
|
||||
pythonImportsCheck = [ "tablib" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Format-agnostic tabular dataset library";
|
||||
homepage = "https://python-tablib.org";
|
||||
homepage = "https://tablib.readthedocs.io/";
|
||||
changelog = "https://github.com/jazzband/tablib/raw/v${version}/HISTORY.md";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue