pythonPackages.power: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 12:27:12 -04:00
parent 1654bd1865
commit 46d331ba8d
2 changed files with 25 additions and 17 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "power";
version = "1.4";
src = fetchPypi {
inherit pname version;
sha256 = "7d7d60ec332acbe3a7d00379b45e39abf650bf7ee311d61da5ab921f52f060f0";
};
# Tests can't work because there is no power information available.
doCheck = false;
meta = with stdenv.lib; {
description = "Cross-platform system power status information";
homepage = https://github.com/Kentzo/Power;
license = licenses.mit;
};
}