1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Add pythonPackages.pysphere 0.1.8

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2014-02-04 22:13:24 -06:00
parent ec985c8ffa
commit 1920d6854a

View file

@ -5388,6 +5388,21 @@ pythonPackages = modules // import ./python-packages-generated.nix {
};
};
pysphere = buildPythonPackage rec {
name = "pysphere-0.1.8";
src = fetchurl {
url = "http://pysphere.googlecode.com/files/${name}.zip";
md5 = "c57cba33626ac4b1e3d1974923d59232";
};
buildInputs = [ pkgs.unzip ];
meta = {
homepage = "https://code.google.com/p/pysphere/";
license = "BSD";
description = "Python API for interaction with the VMWare vSphere";
};
};
pysqlite = buildPythonPackage (rec {
name = "pysqlite-2.6.3";