mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
6bb2eae2ff
pytestpep8 was removed in 25c9946f95
.
This removes pytestpep8 in the rest of the tree, where it was hardly
used.
34 lines
956 B
Nix
34 lines
956 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, pythonOlder
|
|
, snowballstemmer, six, configparser
|
|
, pytest, mock, pathlib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydocstyle";
|
|
version = "2.1.1";
|
|
|
|
# no tests on PyPI
|
|
# https://github.com/PyCQA/pydocstyle/issues/302
|
|
src = fetchFromGitHub {
|
|
owner = "PyCQA";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1h0k8lpx14svc8dini62j0kqiam10pck5sdzvxa4xhsx7y689g5l";
|
|
};
|
|
|
|
propagatedBuildInputs = [ snowballstemmer six ] ++ lib.optional (!isPy3k) configparser;
|
|
|
|
checkInputs = [ pytest mock ] ++ lib.optional (pythonOlder "3.4") pathlib;
|
|
|
|
checkPhase = ''
|
|
# test_integration.py installs packages via pip
|
|
py.test --cache-clear -vv src/tests -k "not test_integration"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Python docstring style checker";
|
|
homepage = "https://github.com/PyCQA/pydocstyle/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dzabraev ];
|
|
};
|
|
}
|