forked from mirrors/nixpkgs
Merge pull request #136209 from staccato/rstcheck
python3Packages.rstcheck: init at 3.3.1
This commit is contained in:
commit
af5e8773c8
|
@ -10278,6 +10278,12 @@
|
||||||
githubId = 8668915;
|
githubId = 8668915;
|
||||||
name = "Stephane Schitter";
|
name = "Stephane Schitter";
|
||||||
};
|
};
|
||||||
|
staccato = {
|
||||||
|
name = "staccato";
|
||||||
|
email = "moveq@riseup.net";
|
||||||
|
github = "staccato";
|
||||||
|
githubId = 86573128;
|
||||||
|
};
|
||||||
steell = {
|
steell = {
|
||||||
email = "steve@steellworks.com";
|
email = "steve@steellworks.com";
|
||||||
github = "Steell";
|
github = "Steell";
|
||||||
|
|
23
pkgs/development/python-modules/rstcheck/default.nix
Normal file
23
pkgs/development/python-modules/rstcheck/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib, fetchFromGitHub, buildPythonPackage, docutils }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "rstcheck";
|
||||||
|
version = "v3.3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "myint";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-4AhENuT+LtUMCi+aaI/rKa2gHti8sKGLdVGjdRithXI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "rstcheck" ];
|
||||||
|
propagatedBuildInputs = [ docutils ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Checks syntax of reStructuredText and code blocks nested within it";
|
||||||
|
homepage = "https://github.com/myint/rstcheck";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ staccato ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7837,6 +7837,8 @@ in {
|
||||||
|
|
||||||
rst2ansi = callPackage ../development/python-modules/rst2ansi { };
|
rst2ansi = callPackage ../development/python-modules/rst2ansi { };
|
||||||
|
|
||||||
|
rstcheck = callPackage ../development/python-modules/rstcheck { };
|
||||||
|
|
||||||
rtmidi-python = callPackage ../development/python-modules/rtmidi-python { };
|
rtmidi-python = callPackage ../development/python-modules/rtmidi-python { };
|
||||||
|
|
||||||
rtoml = callPackage ../development/python-modules/rtoml { };
|
rtoml = callPackage ../development/python-modules/rtoml { };
|
||||||
|
|
Loading…
Reference in a new issue