1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4}: 5 6buildPythonPackage rec { 7 pname = "orvibo"; 8 version = "1.1.1"; 9 10 src = fetchFromGitHub { 11 owner = "happyleavesaoc"; 12 repo = "python-orvibo"; 13 rev = version; 14 sha256 = "042prd5yxqvlfija7ii1xn424iv1p7ndhxv6m67ij8cbvspwx356"; 15 }; 16 17 # Project as no tests 18 doCheck = false; 19 pythonImportsCheck = [ "orvibo" ]; 20 21 meta = with lib; { 22 description = "Python client to work with Orvibo devices"; 23 homepage = "https://github.com/happyleavesaoc/python-orvibo"; 24 license = with licenses; [ mit ]; 25 maintainers = with maintainers; [ fab ]; 26 }; 27}