depot/third_party/nixpkgs/pkgs/development/python-modules/pyxl3/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

30 lines
659 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
isPy27,
}:
buildPythonPackage rec {
pname = "pyxl3";
version = "1.4";
format = "setuptools";
disabled = isPy27;
src = fetchFromGitHub {
owner = "gvanrossum";
repo = pname;
rev = "e6588c12caee49c43faf6aa260f04d7e971f6aa8";
hash = "sha256-8nKQgwLXPVgPxNRF4CryKJb7+llDsZHis5VctxqpIRo=";
};
nativeCheckInputs = [ pytestCheckHook ];
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 = [ ];
};
}