Files
nixpkgs/pkgs/development/python-modules/sphinx-prompt/default.nix
2025-10-07 21:41:54 -04:00

63 lines
1.1 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.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "sbrunner";
repo = "sphinx-prompt";
tag = version;
hash = "sha256-JKCTn2YkdyGLvchMT9C61PxjYxuQFzt3SjCE9JvgtVc=";
};
postPatch = ''
substituteInPlace pyproject.toml --replace-fail 'version = "0.0.0"' 'version = "${version}"'
'';
build-system = [
poetry-core
poetry-dynamic-versioning
];
dependencies = [
docutils
pygments
sphinx
];
# upstream pins these unnecessarily in their requirements.txt
pythonRelaxDeps = [
"certifi"
"requests"
"urllib3"
"zipp"
];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Sphinx extension for creating unselectable prompt";
homepage = "https://github.com/sbrunner/sphinx-prompt";
license = licenses.bsd3;
maintainers = with maintainers; [ kaction ];
};
}