about summary refs log tree commit diff
path: root/pkgs/development/python-modules/power/default.nix
blob: 97c490523f1627e082bfde4de5180dba80b60241 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  stdenv,
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "power";
  version = "1.4";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7d7d60ec332acbe3a7d00379b45e39abf650bf7ee311d61da5ab921f52f060f0";
  };

  # Tests can't work because there is no power information available.
  doCheck = false;

  meta = with lib; {
    broken = stdenv.isDarwin;
    description = "Cross-platform system power status information";
    homepage = "https://github.com/Kentzo/Power";
    license = licenses.mit;
  };
}