nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #136209 from staccato/rstcheck

python3Packages.rstcheck: init at 3.3.1

authored by

Fabian Affolter and committed by
GitHub
af5e8773 7c0b350d

+31
+6
maintainers/maintainer-list.nix
··· 10278 10278 githubId = 8668915; 10279 10279 name = "Stephane Schitter"; 10280 10280 }; 10281 + staccato = { 10282 + name = "staccato"; 10283 + email = "moveq@riseup.net"; 10284 + github = "staccato"; 10285 + githubId = 86573128; 10286 + }; 10281 10287 steell = { 10282 10288 email = "steve@steellworks.com"; 10283 10289 github = "Steell";
+23
pkgs/development/python-modules/rstcheck/default.nix
··· 1 + { lib, fetchFromGitHub, buildPythonPackage, docutils }: 2 + 3 + buildPythonPackage rec { 4 + pname = "rstcheck"; 5 + version = "v3.3.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "myint"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "sha256-4AhENuT+LtUMCi+aaI/rKa2gHti8sKGLdVGjdRithXI="; 12 + }; 13 + 14 + pythonImportsCheck = [ "rstcheck" ]; 15 + propagatedBuildInputs = [ docutils ]; 16 + 17 + meta = with lib; { 18 + description = "Checks syntax of reStructuredText and code blocks nested within it"; 19 + homepage = "https://github.com/myint/rstcheck"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ staccato ]; 22 + }; 23 + }
+2
pkgs/top-level/python-packages.nix
··· 7837 7837 7838 7838 rst2ansi = callPackage ../development/python-modules/rst2ansi { }; 7839 7839 7840 + rstcheck = callPackage ../development/python-modules/rstcheck { }; 7841 + 7840 7842 rtmidi-python = callPackage ../development/python-modules/rtmidi-python { }; 7841 7843 7842 7844 rtoml = callPackage ../development/python-modules/rtoml { };