Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 531 B view raw
1{ lib, buildPythonPackage, fetchPypi, setuptools }: 2 3buildPythonPackage rec { 4 pname = "nodeenv"; 5 version = "1.5.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "ab45090ae383b716c4ef89e690c41ff8c2b257b85b309f01f3654df3d084bd7c"; 10 }; 11 12 propagatedBuildInputs = [ 13 setuptools 14 ]; 15 16 # Tests not included in PyPI tarball 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Node.js virtual environment builder"; 21 homepage = "https://github.com/ekalinin/nodeenv"; 22 license = licenses.bsd3; 23 }; 24}