about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/macropy/default.nix
blob: 051ce068b31793a81dc4150a6de22f5656886374 (plain) (blame)
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
31
32
33
34
35
36
37
38
39
40
41
{ 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
  };
}