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








                         
                    


                          
                                                                   


















                                                                                 
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, async-timeout
}:

buildPythonPackage rec {
  pname = "volkszaehler";
  version = "0.2.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-1oqzhC3Yq2V30F3ilr80vKFnTmI/CdIVLuzMlIr40xI=";
  };

  propagatedBuildInputs = [
    aiohttp
    async-timeout
  ];

  # no tests are present
  doCheck = false;

  pythonImportsCheck = [ "volkszaehler" ];

  meta = with lib; {
    description = "Python Wrapper for interacting with the Volkszahler API";
    homepage = "https://github.com/home-assistant-ecosystem/python-volkszaehler";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}