ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / sphinx-serve / default.nix
blobca2b587e3acc0a393311b0486da8c7a0718e14d2
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "sphinx-serve";
8   version = "1.0.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "8d90f6595114108500b1f935d3f4d07bf5192783c67ce83f944ef289099669c9";
13   };
15   doCheck = false; # No tests
17   pythonImportsCheck = [ "sphinx_serve" ];
19   meta = with lib; {
20     description = "Spawns a simple HTTP server to preview your sphinx documents";
21     homepage = "https://github.com/tlatsas/sphinx-serve";
22     maintainers = with maintainers; [ FlorianFranzen ];
23     license = licenses.mit;
24   };