nixpkgs/pkgs/development/python-modules/batinfo/default.nix
Luflosi 97c8c99f1d
batinfo: limit build to Linux
According to the README of batinfo, it runs only on Linux-based operating systems.
2020-07-13 15:58:13 +02:00

23 lines
561 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "batinfo";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "497e29efc9353ec52e71d43bd040bdfb6d685137ddc2b9143cded4583af572f5";
};
# No tests included
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://github.com/nicolargo/batinfo";
description = "A simple Python lib to retrieve battery information";
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ koral ];
};
}