Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyxl3 / default.nix
blob1242697abab32ae6bd206ec161351a6753bc983e
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , isPy27
6 }:
8 buildPythonPackage rec {
9   pname = "pyxl3";
10   version = "1.4";
11   disabled = isPy27;
13   src = fetchFromGitHub {
14     owner = "gvanrossum";
15     repo = pname;
16     rev = "e6588c12caee49c43faf6aa260f04d7e971f6aa8";
17     hash = "sha256-8nKQgwLXPVgPxNRF4CryKJb7+llDsZHis5VctxqpIRo=";
18   };
20   nativeCheckInputs = [ pytestCheckHook ];
22   meta = with lib; {
23     description = "Python 3 port of pyxl for writing structured and reusable inline HTML";
24     homepage = "https://github.com/gvanrossum/pyxl3";
25     license = licenses.asl20;
26     maintainers = [ ];
27   };