summary refs log blame commit diff
path: root/pkgs/development/python-modules/hydrawiser/default.nix
blob: 3dfeff72609f5a798d572d0043dd8c9ad9741fa6 (plain) (tree)
1
2
3
4
5
6
7






                    


































                                                                    
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytest-cov
, pytestCheckHook
, pythonOlder
, 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 ];
  };
}