pythonPackages.pytest-flake8: init at 0.8.1

This commit is contained in:
Jaakko Luttinen 2017-05-06 10:26:32 +03:00
parent 37f59b3586
commit cc51dd699d
No known key found for this signature in database
GPG Key ID: 7B1CE13152E6B964
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{lib, buildPythonPackage, fetchPypi, pytest, flake8}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pytest-flake8";
version = "0.8.1";
# although pytest is a runtime dependency, do not add it as
# propagatedBuildInputs in order to allow packages depend on another version
# of pytest more easily
buildInputs = [ pytest ];
propagatedBuildInputs = [ flake8 ];
src = fetchPypi {
inherit pname version;
sha256 = "1za5i09gz127yraigmcl443w6149714l279rmlfxg1bl2kdsc45a";
};
checkPhase = ''
pytest --ignore=nix_run_setup.py .
'';
meta = {
description = "py.test plugin for efficiently checking PEP8 compliance";
homepage = https://github.com/tholo/pytest-flake8;
maintainers = with lib.maintainers; [ jluttine ];
license = lib.licenses.bsd2;
};
}

View File

@ -5129,6 +5129,8 @@ in {
};
};
pytest-flake8 = callPackage ../development/python-modules/pytest-flake8 { };
pytestflakes = buildPythonPackage rec {
name = "pytest-flakes-${version}";
version = "1.0.1";