* Move python/2.7/modules.nix into python/2.7/default.nix. Also
remove the pythonModules attribute. The built-in modules are now accessible as (e.g.) "python.modules.ssl" or "pythonPackages.ssl". svn path=/nixpkgs/branches/modular-python/; revision=26559
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
{ pkgs, python, buildPythonPackage }:
|
||||
|
||||
rec {
|
||||
python.modules // rec {
|
||||
|
||||
inherit (pkgs) fetchurl fetchsvn stdenv;
|
||||
|
||||
inherit (python.modules) ssl;
|
||||
|
||||
|
||||
argparse = buildPythonPackage (rec {
|
||||
name = "argparse-1.1";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user