14 buildPythonPackage rec {
19 disabled = pythonOlder "3.11";
21 src = fetchFromGitHub {
23 repo = "python-pvoutput";
24 rev = "refs/tags/v${version}";
25 hash = "sha256-SvsrvGwIAlj/8hdk90+rxigVrx6n3YInvF/4eux2H04=";
29 # Upstream doesn't set a version for the pyproject.toml
30 substituteInPlace pyproject.toml \
31 --replace "0.0.0" "${version}" \
39 propagatedBuildInputs = [
51 pythonImportsCheck = [
56 description = "Python module to interact with the PVOutput API";
57 homepage = "https://github.com/frenck/python-pvoutput";
58 changelog = "https://github.com/frenck/python-pvoutput/releases/tag/v${version}";
59 license = licenses.mit;
60 maintainers = with maintainers; [ fab ];