pythonPackages.pytest-pylint: init at 0.14.0

This commit is contained in:
Chris Ostrouchov 2019-04-12 09:43:53 -04:00
parent 0139c4ba2b
commit 3268907410
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pylint
, six
, pytestrunner
}:
buildPythonPackage rec {
pname = "pytest-pylint";
version = "0.14.0";
src = fetchPypi {
inherit pname version;
sha256 = "7bfbb66fc6dc160193a9e813a7c55e5ae32028f18660deeb90e1cb7e980cbbac";
};
buildInputs = [ pytestrunner ];
propagatedBuildInputs = [
pytest
pylint
six
];
# tests not included with release
doCheck = false;
meta = with lib; {
description = "pytest plugin to check source code with pylint";
homepage = https://github.com/carsongee/pytest-pylint;
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -738,6 +738,8 @@ in {
pytest-mypy = callPackage ../development/python-modules/pytest-mypy { };
pytest-pylint = callPackage ../development/python-modules/pytest-pylint { };
pytest-tornado = callPackage ../development/python-modules/pytest-tornado { };
python-binance = callPackage ../development/python-modules/python-binance { };