8 poetry-dynamic-versioning,
19 buildPythonPackage rec {
20 pname = "sphinx-prompt";
21 version = "1.7.0"; # read before updating past 1.7.0 https://github.com/sbrunner/sphinx-prompt/issues/398
24 src = fetchFromGitHub {
26 repo = "sphinx-prompt";
27 rev = "refs/tags/${version}";
28 hash = "sha256-/XxUSsW8Bowks7P+d6iTlklyMIfTb2otXva/VtRVAkM=";
32 substituteInPlace pyproject.toml \
33 --replace '"poetry-plugin-tweak-dependencies-version", ' ""
38 poetry-dynamic-versioning
47 propagatedBuildInputs = [
53 nativeCheckInputs = [ pytestCheckHook ];
55 # versions >=1.8.0 cannot be build from source
56 passthru.skipBulkUpdate = true;
59 description = "Sphinx extension for creating unselectable prompt";
60 homepage = "https://github.com/sbrunner/sphinx-prompt";
61 license = licenses.bsd3;
62 maintainers = with maintainers; [ kaction ];