summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyxl3/default.nix
blob: 47f40cab27e08206180f5c06a4290495f48f0b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  isPy27,
}:

buildPythonPackage {
  pname = "pyxl3";
  version = "1.4";
  format = "setuptools";
  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "gvanrossum";
    repo = "pyxl3";
    rev = "e6588c12caee49c43faf6aa260f04d7e971f6aa8";
    hash = "sha256-8nKQgwLXPVgPxNRF4CryKJb7+llDsZHis5VctxqpIRo=";
  };

  nativeCheckInputs = [ pytestCheckHook ];

  meta = {
    description = "Python 3 port of pyxl for writing structured and reusable inline HTML";
    homepage = "https://github.com/gvanrossum/pyxl3";
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
}