mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
pythonPackages.pyxl3: init at 1.0
This commit is contained in:
parent
7531dc4366
commit
184c9dffb8
35
pkgs/development/python-modules/pyxl3/default.nix
Normal file
35
pkgs/development/python-modules/pyxl3/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, unittest2
|
||||
, python
|
||||
, isPy27
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyxl3";
|
||||
version = "1.0";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "df413d86664e2d261f67749beffff07eb830ab8c7bbe631d11d4c42f3a5e5fde";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -4522,6 +4522,8 @@ in {
|
|||
|
||||
pysendfile = callPackage ../development/python-modules/pysendfile { };
|
||||
|
||||
pyxl3 = callPackage ../development/python-modules/pyxl3 { };
|
||||
|
||||
qpid-python = callPackage ../development/python-modules/qpid-python { };
|
||||
|
||||
xattr = callPackage ../development/python-modules/xattr { };
|
||||
|
|
Loading…
Reference in a new issue