python2Packages.pydocstyle: drop

It's not used by any leaf package.
This commit is contained in:
Robert Schütz 2021-11-26 15:47:15 -08:00 committed by Jonathan Ringer
parent 7cab7431b3
commit 4912ee7bf1
2 changed files with 0 additions and 35 deletions

View file

@ -1,33 +0,0 @@
{ 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 ];
};
}

View file

@ -438,8 +438,6 @@ with self; with super; {
pydns = callPackage ../development/python-modules/pydns { };
pydocstyle = callPackage ../development/python-modules/pydocstyle/2.nix { };
pyechonest = callPackage ../development/python-modules/pyechonest { };
pyexcelerator = callPackage ../development/python-modules/pyexcelerator { };