ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / sphinx-basic-ng / default.nix
blobe7f17aac9217a56213934e95a9dbeb3036a0115f
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchFromGitHub
5 , sphinx
6 }:
8 buildPythonPackage rec {
9   pname = "sphinx-basic-ng";
10   version = "1.0.0.beta1";
11   disable = pythonOlder "3.7";
13   src = fetchFromGitHub {
14     owner = "pradyunsg";
15     repo = "sphinx-basic-ng";
16     rev = version;
17     sha256 = "sha256-Zh9KvKs4js+AVSfIk0pAj6Kzq/O2m/MGTF+HCwYJTXk=";
18   };
20   propagatedBuildInputs = [
21     sphinx
22   ];
24   # no tests implemented
25   doCheck = false;
27   pythonImportsCheck = [ "sphinx_basic_ng" ];
29   meta = with lib; {
30     description = "A modernised skeleton for Sphinx themes";
31     homepage = "https://sphinx-basic-ng.readthedocs.io/en/latest/";
32     license = licenses.mit;
33     maintainers = with maintainers; [ Luflosi ];
34   };