about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pscript/default.nix
blob: 76af30e2c125d853f4921de1274202f4dd63cb8a (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
42
43
44
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, nodejs
, pythonOlder
}:

buildPythonPackage rec {
  pname = "pscript";
  version = "0.7.7";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "flexxui";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-AhVI+7FiWyH+DfAXnau4aAHJAJtsWEpmnU90ey2z35o=";
  };

  nativeCheckInputs = [
    pytestCheckHook
    nodejs
  ];

  preCheck = ''
    # do not execute legacy tests
    rm -rf pscript_legacy
  '';

  pythonImportsCheck = [
    "pscript"
  ];

  meta = with lib; {
    description = "Python to JavaScript compiler";
    homepage = "https://pscript.readthedocs.io";
    changelog = "https://github.com/flexxui/pscript/blob/v${version}/docs/releasenotes.rst";
    license = licenses.bsd2;
    maintainers = with maintainers; [ matthiasbeyer ];
  };
}