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