python-packages: Add power-1.2.

This commit is contained in:
ambrop7@gmail.com 2014-03-25 22:27:05 +01:00 committed by Rok Garbas
parent 58857096fb
commit 4121f9d745

View file

@ -8781,6 +8781,21 @@ rec {
};
};
power = buildPythonPackage rec {
name = "power-1.2";
src = fetchurl {
url = "http://pypi.python.org/packages/source/p/power/${name}.tar.gz";
sha256 = "09a00af8357f63dbb1a1eb13b82e39ccc0a14d6d2e44e5b235afe60ce8ee8195";
};
meta = {
description = "Cross-platform system power status information";
homepage = https://github.com/Kentzo/Power;
license = "mit";
};
};
# python2.7 specific packages
} // optionalAttrs isPy27 (
with pythonPackages;