Python packages: Sort packages alphabetically.
svn path=/nixpkgs/trunk/; revision=15712
This commit is contained in:
parent
51321bceed
commit
03f2655e97
|
@ -3,6 +3,33 @@
|
||||||
rec {
|
rec {
|
||||||
inherit (pkgs) buildPythonPackage fetchurl fetchsvn stdenv python;
|
inherit (pkgs) buildPythonPackage fetchurl fetchsvn stdenv python;
|
||||||
|
|
||||||
|
foolscap = buildPythonPackage (rec {
|
||||||
|
name = "foolscap-0.3.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://foolscap.lothar.com/releases/${name}.tar.gz";
|
||||||
|
sha256 = "1wkqgm6anlxvz8dnqx7ki008255nm1mlhak5n9xy6g1yf31fn3l0";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pkgs.twisted pkgs.pyopenssl ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://foolscap.lothar.com/;
|
||||||
|
|
||||||
|
description = "Foolscap, an RPC protocol for Python that follows the distributed object-capability model";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
"Foolscap" is the name for the next-generation RPC protocol,
|
||||||
|
intended to replace Perspective Broker (part of Twisted).
|
||||||
|
Foolscap is a protocol to implement a distributed
|
||||||
|
object-capabilities model in Python.
|
||||||
|
'';
|
||||||
|
|
||||||
|
# See http://foolscap.lothar.com/trac/browser/LICENSE.
|
||||||
|
license = "MIT";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
nevow = buildPythonPackage (rec {
|
nevow = buildPythonPackage (rec {
|
||||||
name = "nevow-0.9.33";
|
name = "nevow-0.9.33";
|
||||||
|
|
||||||
|
@ -91,31 +118,4 @@ rec {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
foolscap = buildPythonPackage (rec {
|
|
||||||
name = "foolscap-0.3.2";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "http://foolscap.lothar.com/releases/${name}.tar.gz";
|
|
||||||
sha256 = "1wkqgm6anlxvz8dnqx7ki008255nm1mlhak5n9xy6g1yf31fn3l0";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ pkgs.twisted pkgs.pyopenssl ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = http://foolscap.lothar.com/;
|
|
||||||
|
|
||||||
description = "Foolscap, an RPC protocol for Python that follows the distributed object-capability model";
|
|
||||||
|
|
||||||
longDescription = ''
|
|
||||||
"Foolscap" is the name for the next-generation RPC protocol,
|
|
||||||
intended to replace Perspective Broker (part of Twisted).
|
|
||||||
Foolscap is a protocol to implement a distributed
|
|
||||||
object-capabilities model in Python.
|
|
||||||
'';
|
|
||||||
|
|
||||||
# See http://foolscap.lothar.com/trac/browser/LICENSE.
|
|
||||||
license = "MIT";
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue