mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
pythonPackages.pytest-pylint: init at 0.14.0
This commit is contained in:
parent
0139c4ba2b
commit
3268907410
2 changed files with 38 additions and 0 deletions
36
pkgs/development/python-modules/pytest-pylint/default.nix
Normal file
36
pkgs/development/python-modules/pytest-pylint/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue