9 buildPythonPackage rec {
10 pname = "nodepy-runtime";
14 inherit pname version;
15 hash = "sha256-6tSsD76EpCZxkdulv1BcUZtIXGWLG6PuII25J8STygE=";
18 propagatedBuildInputs = [
24 pythonImportsCheck = [
29 homepage = "https://github.com/nodepy/nodepy";
30 description = "Runtime for Python inspired by Node.JS";
32 Node.py is a Python runtime and package manager compatible with CPython
33 2.7 and 3.3 – 3.6. It provides a separate import mechanism for modules
34 inspired by Node.js, bringing dependency management and ease of deployment
35 for Python applications up to par with other languages without virtual
38 Node.py comes with a built-in package manager that builds on Pip for
39 standard Python dependencies but also adds the capability to install
40 packages that are specifically developed for Node.py. To install the
41 dependencies of the package manager you must specify the [pm] install
44 license = licenses.mit;
45 maintainers = with maintainers; [ AndersonTorres ];