nixpkgs/pkgs/development/python-modules/readthedocs-sphinx-ext/default.nix
2019-02-22 10:05:40 +01:00

33 lines
600 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests
, pytest
, mock
, sphinx
}:
buildPythonPackage rec {
pname = "readthedocs-sphinx-ext";
version = "0.5.17";
src = fetchPypi {
inherit pname version;
sha256 = "21097cbb37c9a0590e2cb444b55bd87302fc8f69640fa2d4f2d113e98e9558ff";
};
propagatedBuildInputs = [ requests ];
checkInputs = [ pytest mock sphinx ];
checkPhase = ''
py.test
'';
meta = with lib; {
description = "Sphinx extension for Read the Docs overrides";
homepage = http://github.com/rtfd/readthedocs-sphinx-ext;
license = licenses.mit;
};
}