depot/third_party/nixpkgs/pkgs/development/python-modules/pyxl3/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

35 lines
758 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, unittest2
, python
, isPy27
}:
buildPythonPackage rec {
pname = "pyxl3";
version = "1.3";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "23831c6d60b2ce3fbb39966f6fb21a5e053d6ce0bd08b00bb50fa388631b69ee";
};
checkInputs = [ unittest2 ];
checkPhase = ''
${python.interpreter} tests/test_basic.py
'';
# tests require weird codec installation
# which is not necessary for major use of package
doCheck = false;
meta = with lib; {
description = "Python 3 port of pyxl for writing structured and reusable inline HTML";
homepage = "https://github.com/gvanrossum/pyxl3";
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}