pypi2nix packaged, Distutils2 added to generated python packages
This commit is contained in:
parent
a646dee027
commit
7fdf26231f
File diff suppressed because it is too large
Load Diff
@ -105,5 +105,8 @@
|
|||||||
"propagatedBuildInputs": [ "eggtestinfo" ]
|
"propagatedBuildInputs": [ "eggtestinfo" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{ "name": "Distutils2"
|
||||||
|
"doCheck": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -53,6 +53,25 @@ pythonPackages = modules // import ./python-packages-generated.nix {
|
|||||||
inherit python setuptools;
|
inherit python setuptools;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pypi2nix = buildPythonPackage rec {
|
||||||
|
rev = "f0bed8037538de481fab19af0521cb771c148aff";
|
||||||
|
name = "pypi2nix-1.0_${rev}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/garbas/pypi2nix/tarball/${rev}";
|
||||||
|
name = "${name}.tar.bz";
|
||||||
|
sha256 = "14cabnln65v9s3y23dkmbp0zjhbgniyfwmrragwqv3wzi63bvhhk";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pythonPackages."Distutils2-1.0a4" ];
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/garbas/pypi2nix;
|
||||||
|
description = "";
|
||||||
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
||||||
|
};
|
||||||
|
};
|
||||||
# packages defined elsewhere
|
# packages defined elsewhere
|
||||||
|
|
||||||
blivet = callPackage ../development/python-modules/blivet { };
|
blivet = callPackage ../development/python-modules/blivet { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user