1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pythonOlder, 6 pytestCheckHook, 7}: 8 9buildPythonPackage rec { 10 pname = "pyhomeworks"; 11 version = "0.0.6"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "Eqbm8274B2hBuF+mREe8lqGhpzZExPJ29jzvwB5RNR8="; 19 }; 20 21 # Project has no real tests 22 doCheck = false; 23 24 pythonImportsCheck = [ "pyhomeworks" ]; 25 26 meta = with lib; { 27 description = "Python interface to Lutron Homeworks Series 4/8"; 28 homepage = "https://github.com/dubnom/pyhomeworks"; 29 license = licenses.mit; 30 maintainers = with maintainers; [ fab ]; 31 }; 32}