mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages: add execnet, rapid multi-Python deployment
This commit is contained in:
parent
9b55a4ebe1
commit
e830be665b
1 changed files with 17 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue