linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / readthedocs-sphinx-ext / default.nix
blobef6975b29df71e2b4dc2e067d8738988d082267c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 , pytest
6 , mock
7 , sphinx
8 }:
10 buildPythonPackage rec {
11   pname = "readthedocs-sphinx-ext";
12   version = "2.1.3";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "209c4b5ecf233b8bb44fcb8b4548460b0806e347ce50fd8172adcb7d23969a4a";
17   };
19   propagatedBuildInputs = [ requests ];
21   checkInputs = [ pytest mock sphinx ];
23   checkPhase = ''
24     py.test
25   '';
27   meta = with lib; {
28     description = "Sphinx extension for Read the Docs overrides";
29     homepage = "https://github.com/rtfd/readthedocs-sphinx-ext";
30     license = licenses.mit;
31   };