bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
46 lines
800 B
Nix
46 lines
800 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pynose,
|
|
setuptools,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xlwt";
|
|
version = "1.3.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-xZkScXqbKPGjwqmP1gdBAUsGsEOTbc7LwRPqqtoVbIg=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [ pynose ];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
nosetests -v
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "xlwt" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to create spreadsheet files compatible with MS";
|
|
homepage = "https://github.com/python-excel/xlwt";
|
|
license = with licenses; [
|
|
bsdOriginal
|
|
bsd3
|
|
lgpl21Plus
|
|
];
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|