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/venstarcolortouch/default.nix

30 lines
650 B

{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "venstarcolortouch";
version = "0.15";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-7JUqXHk/yL+/EvfQoGLaKmPPy4DkljT9olqK0a/Nmkk=";
};
propagatedBuildInputs = [
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "venstarcolortouch" ];
meta = with lib; {
description = "Python interface for Venstar ColorTouch thermostats Resources";
homepage = "https://github.com/hpeyerl/venstar_colortouch";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}