Merge pull request #108425 from fabaff/glances_api
python3Packages.glances-api: init at 0.2.0
This commit is contained in:
commit
9825f547ca
34
pkgs/development/python-modules/glances-api/default.nix
Normal file
34
pkgs/development/python-modules/glances-api/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, aiohttp
|
||||||
|
, async-timeout
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "glances-api";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "home-assistant-ecosystem";
|
||||||
|
repo = "python-glances-api";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0rgv77n0lvr7d3vk4qc8svipxafmm6s4lfxrl976hsygrhaqidch";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
async-timeout
|
||||||
|
];
|
||||||
|
|
||||||
|
# no tests are present
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "glances_api" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python Wrapper for interacting with the Volkszahler API";
|
||||||
|
homepage = "https://github.com/home-assistant-ecosystem/python-glances-api";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -303,7 +303,7 @@
|
|||||||
"github" = ps: with ps; [ PyGithub ];
|
"github" = ps: with ps; [ PyGithub ];
|
||||||
"gitlab_ci" = ps: with ps; [ python-gitlab ];
|
"gitlab_ci" = ps: with ps; [ python-gitlab ];
|
||||||
"gitter" = ps: with ps; [ ]; # missing inputs: gitterpy
|
"gitter" = ps: with ps; [ ]; # missing inputs: gitterpy
|
||||||
"glances" = ps: with ps; [ ]; # missing inputs: glances_api
|
"glances" = ps: with ps; [ glances-api ];
|
||||||
"gntp" = ps: with ps; [ gntp ];
|
"gntp" = ps: with ps; [ gntp ];
|
||||||
"goalfeed" = ps: with ps; [ ]; # missing inputs: pysher
|
"goalfeed" = ps: with ps; [ ]; # missing inputs: pysher
|
||||||
"goalzero" = ps: with ps; [ ]; # missing inputs: goalzero
|
"goalzero" = ps: with ps; [ ]; # missing inputs: goalzero
|
||||||
|
@ -2468,6 +2468,8 @@ in {
|
|||||||
|
|
||||||
glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28
|
glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28
|
||||||
|
|
||||||
|
glances-api = callPackage ../development/python-modules/glances-api { };
|
||||||
|
|
||||||
glasgow = callPackage ../development/python-modules/glasgow { };
|
glasgow = callPackage ../development/python-modules/glasgow { };
|
||||||
|
|
||||||
glob2 = callPackage ../development/python-modules/glob2 { };
|
glob2 = callPackage ../development/python-modules/glob2 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user