Files
nixpkgs/pkgs/development/python-modules/macropy/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

42 lines
999 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, python
, isPy27
, pythonAtLeast
, pinqSupport ? false, sqlalchemy
, pyxlSupport ? false, pyxl3
}:
buildPythonPackage rec {
# https://github.com/lihaoyi/macropy/issues/94
version = "1.1.0b2";
format = "setuptools";
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 = [ ];
broken = pythonAtLeast "3.8"; # see https://github.com/lihaoyi/macropy/issues/103
};
}