python.pkgs.doc8: init at 0.8.0
This commit is contained in:
parent
f27468e675
commit
ed75ce39a6
2 changed files with 34 additions and 0 deletions
32
pkgs/development/python-modules/doc8/default.nix
Normal file
32
pkgs/development/python-modules/doc8/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pbr
|
||||||
|
, docutils
|
||||||
|
, six
|
||||||
|
, chardet
|
||||||
|
, stevedore
|
||||||
|
, restructuredtext_lint
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "doc8";
|
||||||
|
version = "0.8.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "2df89f9c1a5abfb98ab55d0175fed633cae0cf45025b8b1e0ee5ea772be28543";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pbr ];
|
||||||
|
propagatedBuildInputs = [ docutils six chardet stevedore restructuredtext_lint ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Style checker for Sphinx (or other) RST documentation";
|
||||||
|
homepage = "https://launchpad.net/doc8";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
};
|
||||||
|
}
|
|
@ -15620,6 +15620,8 @@ in {
|
||||||
testrepository subunit coverage oslotest ];
|
testrepository subunit coverage oslotest ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
doc8 = callPackage ../development/python-modules/doc8 { };
|
||||||
|
|
||||||
wrapt = buildPythonPackage rec {
|
wrapt = buildPythonPackage rec {
|
||||||
name = "wrapt-${version}";
|
name = "wrapt-${version}";
|
||||||
version = "1.10.5";
|
version = "1.10.5";
|
||||||
|
|
Loading…
Reference in a new issue