13 buildPythonPackage rec {
14 pname = "pyhaversion";
17 # Only 3.8.0 and beyond are supported
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
24 sha256 = "sha256-2vW4BN5qwJZYQ8FU3bpSA2v1dX6TOhcHDbHRMDPoRAs=";
27 propagatedBuildInputs = [
39 pythonImportsCheck = [ "pyhaversion" ];
42 description = "Python module to the newest version number of Home Assistant";
43 homepage = "https://github.com/ludeeus/pyhaversion";
44 changelog = "https://github.com/ludeeus/pyhaversion/releases/tag/${version}";
45 license = with licenses; [ mit ];
46 maintainers = with maintainers; [ makefu ];