1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages: add execnet, rapid multi-Python deployment

This commit is contained in:
Jaka Hudoklin 2013-09-20 17:54:52 +02:00
parent 9b55a4ebe1
commit e830be665b

View file

@ -1345,6 +1345,23 @@ pythonPackages = modules // import ./python-packages-generated.nix {
};
execnet = buildPythonPackage rec {
name = "execnet-1.1";
src = fetchurl {
url = "https://pypi.python.org/packages/source/e/execnet/${name}.zip";
md5 = "be885ccd9612966bb81839670d2da099";
};
buildInputs = [ pkgs.unzip ];
meta = {
description = "rapid multi-Python deployment";
license = stdenv.lib.licenses.gpl2;
};
};
fabric = buildPythonPackage rec {
name = "fabric-1.6.1";
src = fetchurl {