nixops: explicitly specify python2

This commit is contained in:
Kirill Boltaev 2016-10-19 18:46:31 +03:00
parent 7fb1f711f7
commit 0c34b202e3
1 changed files with 14 additions and 14 deletions

View File

@ -1,9 +1,9 @@
{ lib, pythonPackages, fetchurl, libxslt, docbook5_xsl, openssh { lib, python2Packages, fetchurl, libxslt, docbook5_xsl, openssh
# version args # version args
, src, version , src, version
}: }:
pythonPackages.buildPythonApplication { python2Packages.buildPythonApplication {
name = "nixops-${version}"; name = "nixops-${version}";
namePrefix = ""; namePrefix = "";
@ -11,18 +11,18 @@ pythonPackages.buildPythonApplication {
buildInputs = [ libxslt ]; buildInputs = [ libxslt ];
pythonPath = pythonPath = with python2Packages;
[ pythonPackages.prettytable [ prettytable
pythonPackages.boto boto
pythonPackages.sqlite3 sqlite3
pythonPackages.hetzner hetzner
pythonPackages.libcloud libcloud
pythonPackages.azure-storage azure-storage
pythonPackages.azure-mgmt-compute azure-mgmt-compute
pythonPackages.azure-mgmt-network azure-mgmt-network
pythonPackages.azure-mgmt-resource azure-mgmt-resource
pythonPackages.azure-mgmt-storage azure-mgmt-storage
pythonPackages.adal adal
]; ];
doCheck = false; doCheck = false;