My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyhomepilot/default.nix

35 lines
732 B

{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyhomepilot";
version = "0.0.3";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "nico0302";
repo = pname;
rev = "v${version}";
sha256 = "00gmqx8cwsd15iccnlr8ypgqrdg6nw9ha518cfk7pyp8vhw1ziwy";
};
propagatedBuildInputs = [
aiohttp
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyhomepilot" ];
meta = with lib; {
description = "Python module to communicate with the Rademacher HomePilot API";
homepage = "https://github.com/nico0302/pyhomepilot";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}