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

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.flake8-docstrings: init at 1.6.0

+29
+27
pkgs/development/python-modules/flake8-docstrings/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , flake8 5 + , pydocstyle 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "flake8-docstrings"; 10 + version = "1.6.0"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "9fe7c6a306064af8e62a055c2f61e9eb1da55f84bb39caef2b84ce53708ac34b"; 15 + }; 16 + 17 + propagatedBuildInputs = [ flake8 pydocstyle ]; 18 + 19 + pythonImportsCheck = [ "flake8_docstrings" ]; 20 + 21 + meta = with lib; { 22 + description = "Extension for flake8 which uses pydocstyle to check docstrings"; 23 + homepage = "https://gitlab.com/pycqa/flake8-docstrings"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ smaret ]; 26 + }; 27 + }
+2
pkgs/top-level/python-packages.nix
··· 2843 2843 2844 2844 flake8-debugger = callPackage ../development/python-modules/flake8-debugger { }; 2845 2845 2846 + flake8-docstrings = callPackage ../development/python-modules/flake8-docstrings { }; 2847 + 2846 2848 flake8-future-import = callPackage ../development/python-modules/flake8-future-import { }; 2847 2849 2848 2850 flake8-import-order = callPackage ../development/python-modules/flake8-import-order { };