generated python packages for Plone and Pyramid
This commit is contained in:
parent
339e1d94c6
commit
92443dea6c
5495
pkgs/top-level/python-packages-generated.nix
Normal file
5495
pkgs/top-level/python-packages-generated.nix
Normal file
File diff suppressed because it is too large
Load Diff
109
pkgs/top-level/python-packages.json
Normal file
109
pkgs/top-level/python-packages.json
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
[
|
||||||
|
{ "name": "pyramid",
|
||||||
|
"buildInputs": [ "pkgs.libxml2", "pkgs.libxslt" ],
|
||||||
|
"override": {
|
||||||
|
"pyramid": {
|
||||||
|
"buildInputs": [
|
||||||
|
"nose",
|
||||||
|
"WebTest",
|
||||||
|
"zope.component",
|
||||||
|
"zope.interface"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"cssselect": {
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"lxml": {
|
||||||
|
"buildInputs": [ "pkgs.libxml2", "pkgs.libxslt" ],
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"six": {
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"beautifulsoup4": {
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"zope.exceptions": {
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"zope.component": {
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"zope.schema": {
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"zope.testing": {
|
||||||
|
"buildInputs": [ "zope.location" ]
|
||||||
|
},
|
||||||
|
"waitress": {
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"venusian": {
|
||||||
|
"buildInputs": [ "nose" ],
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"Mako": {
|
||||||
|
"buildInputs": [ "nose" ]
|
||||||
|
},
|
||||||
|
"WebOb": {
|
||||||
|
"buildInputs": [ "nose" ],
|
||||||
|
"propagatedBuildInputs": [ "python.modules.ssl" ]
|
||||||
|
},
|
||||||
|
"WebTest": {
|
||||||
|
"buildInputs": [
|
||||||
|
"nose",
|
||||||
|
"unittest2",
|
||||||
|
"pyquery",
|
||||||
|
"WSGIProxy2",
|
||||||
|
"PasteDeploy",
|
||||||
|
"mock",
|
||||||
|
"coverage"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"mock": {
|
||||||
|
"buildInputs": [ "unittest2" ]
|
||||||
|
},
|
||||||
|
"PasteDeploy": {
|
||||||
|
"buildInputs": [ "nose" ]
|
||||||
|
},
|
||||||
|
"Chameleon": {
|
||||||
|
"buildInputs": [ "zope.event" ],
|
||||||
|
"doCheck": false
|
||||||
|
},
|
||||||
|
"zope.interface": {
|
||||||
|
"buildInputs": [ "zope.event" ]
|
||||||
|
},
|
||||||
|
"translationstring": {
|
||||||
|
"buildInputs": [ "nose" ]
|
||||||
|
},
|
||||||
|
"repoze.lru": {
|
||||||
|
"buildInputs": [ "nose" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "name": "Plone",
|
||||||
|
"extends": "http://dist.plone.org/release/4.3.1/versions.cfg",
|
||||||
|
"doCheck": false,
|
||||||
|
"installCommand": "easy_install --always-unzip --no-deps --prefix=\"$out\" .",
|
||||||
|
"override": {
|
||||||
|
"Products.DCWorkflow": {
|
||||||
|
"propagatedBuildInputs": [ "eggtestinfo" ]
|
||||||
|
},
|
||||||
|
"Products.CMFDefault": {
|
||||||
|
"propagatedBuildInputs": [ "eggtestinfo" ]
|
||||||
|
},
|
||||||
|
"Products.CMFQuickInstallerTool": {
|
||||||
|
"propagatedBuildInputs": [ "eggtestinfo" ]
|
||||||
|
},
|
||||||
|
"Products.CMFUid": {
|
||||||
|
"propagatedBuildInputs": [ "eggtestinfo" ]
|
||||||
|
},
|
||||||
|
"Products.CMFActionIcons": {
|
||||||
|
"propagatedBuildInputs": [ "eggtestinfo" ]
|
||||||
|
},
|
||||||
|
"Products.CMFCalendar": {
|
||||||
|
"propagatedBuildInputs": [ "eggtestinfo" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
@ -7,7 +7,11 @@ optional = pkgs.lib.optional;
|
|||||||
optionals = pkgs.lib.optionals;
|
optionals = pkgs.lib.optionals;
|
||||||
modules = python.modules or { readline = null; sqlite3 = null; curses = null; ssl = null; };
|
modules = python.modules or { readline = null; sqlite3 = null; curses = null; ssl = null; };
|
||||||
|
|
||||||
pythonPackages = modules // rec {
|
pythonPackages = modules // import ./python-packages-generated.nix {
|
||||||
|
inherit pkgs python;
|
||||||
|
inherit (pkgs) stdenv fetchurl;
|
||||||
|
self = pythonPackages;
|
||||||
|
} // rec {
|
||||||
|
|
||||||
inherit python;
|
inherit python;
|
||||||
inherit (pkgs) fetchurl fetchsvn fetchgit stdenv;
|
inherit (pkgs) fetchurl fetchsvn fetchgit stdenv;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user