buildPythonPackage: get rid of setupPyInstallFlags since there is no such thing

This commit is contained in:
Domen Kožar
2015-11-18 17:56:26 +01:00
parent ec0f58b459
commit a912c45ee2
5 changed files with 5 additions and 13 deletions

View File

@@ -3,7 +3,7 @@
let version = "0.7.6";
in pythonPackages.buildPythonPackage rec {
name = "cloud-init-0.7.6";
name = "cloud-init-${version}";
namePrefix = "";
src = fetchurl {
@@ -23,7 +23,7 @@ in pythonPackages.buildPythonPackage rec {
pythonPath = with pythonPackages; [ cheetah jinja2 prettytable
oauth pyserial configobj pyyaml argparse requests jsonpatch ];
setupPyInstallFlags = ["--init-system systemd"];
# TODO: --init-system systemd
meta = {
homepage = http://cloudinit.readthedocs.org;