depot/third_party/nixpkgs/pkgs/development/python-modules/pysensibo/default.nix

36 lines
747 B
Nix
Raw Normal View History

{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pysensibo";
version = "1.0.36";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-lsHKwFzfkGWuUiZGkt9zwjNDDU7i6gcqcEsi5SQqsSQ=";
};
propagatedBuildInputs = [ aiohttp ];
# No tests implemented
doCheck = false;
pythonImportsCheck = [ "pysensibo" ];
meta = with lib; {
description = "Module for interacting with Sensibo";
homepage = "https://github.com/andrey-git/pysensibo";
changelog = "https://github.com/andrey-git/pysensibo/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}