pythonPackages.nodeenv: init at 1.3.2

This commit is contained in:
Boris Babic 2018-07-30 23:29:18 +02:00
parent 632d3b5d7d
commit a1f03c09af
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "nodeenv";
version = "1.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "0vs9nyf9w3655j1vv3abxj4vbig61c0hjmhpfb91gblv32shl15a";
};
# Tests not included in PyPI tarball
doCheck = false;
meta = with lib; {
description = "Node.js virtual environment builder";
homepage = https://github.com/ekalinin/nodeenv;
license = licenses.bsd3;
};
}

View File

@ -8428,6 +8428,8 @@ in {
inherit (pkgs) which;
};
nodeenv = callPackage ../development/python-modules/nodeenv { };
nose = buildPythonPackage rec {
version = "1.3.7";
name = "nose-${version}";