65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
|
||
|
# build-system
|
||
|
poetry-core,
|
||
|
poetry-dynamic-versioning,
|
||
|
|
||
|
# dependencies
|
||
|
docutils,
|
||
|
pygments,
|
||
|
sphinx,
|
||
|
|
||
|
# tests
|
||
|
pytestCheckHook,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "sphinx-prompt";
|
||
|
version = "1.7.0"; # read before updating past 1.7.0 https://github.com/sbrunner/sphinx-prompt/issues/398
|
||
|
format = "pyproject";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "sbrunner";
|
||
|
repo = "sphinx-prompt";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-/XxUSsW8Bowks7P+d6iTlklyMIfTb2otXva/VtRVAkM=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace pyproject.toml \
|
||
|
--replace '"poetry-plugin-tweak-dependencies-version", ' ""
|
||
|
'';
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
poetry-core
|
||
|
poetry-dynamic-versioning
|
||
|
];
|
||
|
|
||
|
pythonRelaxDeps = [
|
||
|
"docutils"
|
||
|
"pygments"
|
||
|
"Sphinx"
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
docutils
|
||
|
pygments
|
||
|
sphinx
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
# versions >=1.8.0 cannot be build from source
|
||
|
passthru.skipBulkUpdate = true;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Sphinx extension for creating unselectable prompt";
|
||
|
homepage = "https://github.com/sbrunner/sphinx-prompt";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = with maintainers; [ kaction ];
|
||
|
};
|
||
|
}
|