python3Packages.hydrawiser: init at 0.2
This commit is contained in:
parent
b451286b1f
commit
68026a2219
2 changed files with 45 additions and 0 deletions
43
pkgs/development/python-modules/hydrawiser/default.nix
Normal file
43
pkgs/development/python-modules/hydrawiser/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytest-cov
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, pyyaml
|
||||||
|
, requests
|
||||||
|
, requests-mock
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "hydrawiser";
|
||||||
|
version = "0.2";
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ptcryan";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "161hazlpvd71xcl2ja86560wm5lnrjv210ki3ji37l6c6gwmhjdj";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests ];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-cov
|
||||||
|
pytestCheckHook
|
||||||
|
requests
|
||||||
|
requests-mock
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "hydrawiser" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library for Hydrawise API";
|
||||||
|
homepage = "https://github.com/ptcryan/hydrawiser";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2952,6 +2952,8 @@ in {
|
||||||
|
|
||||||
hydra-check = callPackage ../development/python-modules/hydra-check { };
|
hydra-check = callPackage ../development/python-modules/hydra-check { };
|
||||||
|
|
||||||
|
hydrawiser = callPackage ../development/python-modules/hydrawiser { };
|
||||||
|
|
||||||
hypchat = callPackage ../development/python-modules/hypchat { };
|
hypchat = callPackage ../development/python-modules/hypchat { };
|
||||||
|
|
||||||
hyperframe = callPackage ../development/python-modules/hyperframe { };
|
hyperframe = callPackage ../development/python-modules/hyperframe { };
|
||||||
|
|
Loading…
Reference in a new issue