9 buildPythonPackage rec {
10 pname = "pyhomeworks";
14 disabled = pythonOlder "3.6";
17 inherit pname version;
18 hash = "sha256-Jq+rjhjmnPFNaEuCHyi+8i20RgLf1rpZg6QqwE7ax7M=";
22 substituteInPlace pyproject.toml \
23 --replace-fail "setuptools~=69.2.0" "setuptools" \
24 --replace-fail ', "wheel~=0.43.0"' ""
27 build-system = [ setuptools ];
29 # Project has no real tests
32 pythonImportsCheck = [ "pyhomeworks" ];
35 description = "Python interface to Lutron Homeworks Series 4/8";
36 homepage = "https://github.com/dubnom/pyhomeworks";
37 license = licenses.mit;
38 maintainers = with maintainers; [ fab ];