ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pydocstyle / default.nix
blob0658e1857174f082417f9acfa8b07dfca1ae0901
1 { lib
2 , buildPythonPackage
3 , isPy3k
4 , fetchFromGitHub
5 , snowballstemmer
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "pydocstyle";
11   version = "6.1.1";
12   disabled = !isPy3k;
14   format = "setuptools";
16   src = fetchFromGitHub {
17     owner = "PyCQA";
18     repo = pname;
19     rev = version;
20     sha256 = "sha256-j0WMD2qKDdMaKG2FxrrM/O7zX4waJ1afaRPRv70djkE=";
21   };
23   propagatedBuildInputs = [
24     snowballstemmer
25   ];
27   checkInputs = [
28     pytestCheckHook
29   ];
31   disabledTestPaths = [
32     "src/tests/test_integration.py" # runs pip install
33   ];
35   meta = with lib; {
36     description = "Python docstring style checker";
37     homepage = "https://github.com/PyCQA/pydocstyle";
38     license = licenses.mit;
39     maintainers = with maintainers; [ dzabraev ];
40   };