mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
nixops: explicitly specify python2
This commit is contained in:
parent
7fb1f711f7
commit
0c34b202e3
1 changed files with 14 additions and 14 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue