Merge pull request #19693 from aske/nixops-python2

nixops: explicitly specify python2
This commit is contained in:
Jörg Thalheim 2016-10-20 11:01:27 +02:00 committed by GitHub
commit 09d736d8e9
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
, src, version
}:
pythonPackages.buildPythonApplication {
python2Packages.buildPythonApplication {
name = "nixops-${version}";
namePrefix = "";
@ -11,18 +11,18 @@ pythonPackages.buildPythonApplication {
buildInputs = [ libxslt ];
pythonPath =
[ pythonPackages.prettytable
pythonPackages.boto
pythonPackages.sqlite3
pythonPackages.hetzner
pythonPackages.libcloud
pythonPackages.azure-storage
pythonPackages.azure-mgmt-compute
pythonPackages.azure-mgmt-network
pythonPackages.azure-mgmt-resource
pythonPackages.azure-mgmt-storage
pythonPackages.adal
pythonPath = with python2Packages;
[ prettytable
boto
sqlite3
hetzner
libcloud
azure-storage
azure-mgmt-compute
azure-mgmt-network
azure-mgmt-resource
azure-mgmt-storage
adal
];
doCheck = false;