48 lines
		
	
	
		
			878 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			878 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, buildPythonPackage
 | 
						|
, fetchFromGitHub
 | 
						|
, pytestCheckHook
 | 
						|
, requests
 | 
						|
, pythonOlder
 | 
						|
, setuptools
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "pytado";
 | 
						|
  version = "0.17.4";
 | 
						|
  pyproject = true;
 | 
						|
 | 
						|
  disabled = pythonOlder "3.7";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "wmalgadey";
 | 
						|
    repo = "PyTado";
 | 
						|
    rev = "refs/tags/${version}";
 | 
						|
    hash = "sha256-Wdd9HdsQjaYlL8knhMuO87+dom+aTsmrLRK0UdrpsbQ=";
 | 
						|
  };
 | 
						|
 | 
						|
  nativeBuildInputs = [
 | 
						|
    setuptools
 | 
						|
  ];
 | 
						|
 | 
						|
  propagatedBuildInputs = [
 | 
						|
    requests
 | 
						|
  ];
 | 
						|
 | 
						|
  nativeCheckInputs = [
 | 
						|
    pytestCheckHook
 | 
						|
  ];
 | 
						|
 | 
						|
  pythonImportsCheck = [
 | 
						|
    "PyTado"
 | 
						|
  ];
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "Python binding for Tado web API";
 | 
						|
    homepage = "https://github.com/wmalgadey/PyTado";
 | 
						|
    changelog = "https://github.com/wmalgadey/PyTado/releases/tag/${version}";
 | 
						|
    license = licenses.gpl3Only;
 | 
						|
    maintainers = with maintainers; [ ];
 | 
						|
  };
 | 
						|
}
 |