Merge pull request #61094 from costrouc/python-macropy-init
pythonPackages.macropy: init at 1.10b2
This commit is contained in:
commit
272bec550c
38
pkgs/development/python-modules/macropy/default.nix
Normal file
38
pkgs/development/python-modules/macropy/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, python
|
||||
, isPy27
|
||||
, pinqSupport ? false, sqlalchemy
|
||||
, pyxlSupport ? false, pyxl3
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
# https://github.com/lihaoyi/macropy/issues/94
|
||||
version = "1.1.0b2";
|
||||
pname = "macropy";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lihaoyi";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1bd2fzpa30ddva3f8lw2sbixxf069idwib8srd64s5v46ricm2cf";
|
||||
};
|
||||
|
||||
# js_snippets extra only works with python2
|
||||
propagatedBuildInputs = [ ]
|
||||
++ lib.optional pinqSupport sqlalchemy
|
||||
++ lib.optional pyxlSupport pyxl3;
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} run_tests.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/lihaoyi/macropy;
|
||||
description = "Macros in Python: quasiquotes, case classes, LINQ and more";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
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 ];
|
||||
};
|
||||
}
|
@ -511,6 +511,8 @@ in {
|
||||
|
||||
logzero = callPackage ../development/python-modules/logzero { };
|
||||
|
||||
macropy = callPackage ../development/python-modules/macropy { };
|
||||
|
||||
mail-parser = callPackage ../development/python-modules/mail-parser { };
|
||||
|
||||
manhole = callPackage ../development/python-modules/manhole { };
|
||||
@ -4571,6 +4573,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…
x
Reference in New Issue
Block a user