nixpkgs/pkgs/development/python-modules/odfpy/default.nix
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00

31 lines
545 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, defusedxml
, pytest
}:
buildPythonPackage rec {
pname = "odfpy";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "596021f0519623ca8717331951c95e3b8d7b21e86edc7efe8cb650a0d0f59a2b";
};
propagatedBuildInputs = [ defusedxml ];
checkInputs = [ pytest ];
checkPhase = ''
pytest
'';
meta = {
description = "Python API and tools to manipulate OpenDocument files";
homepage = https://github.com/eea/odfpy;
license = lib.licenses.asl20;
};
}