2018-07-21 01:44:44 +01:00
|
|
|
{lib, buildPythonPackage, fetchPypi, pytest, flake8}:
|
2017-05-06 08:26:32 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-flake8";
|
2019-02-14 07:37:27 +00:00
|
|
|
version = "1.0.4";
|
2017-05-06 08:26:32 +01:00
|
|
|
|
|
|
|
# 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
|
2019-01-05 10:54:27 +00:00
|
|
|
checkInputs = [ pytest ];
|
2017-05-06 08:26:32 +01:00
|
|
|
propagatedBuildInputs = [ flake8 ];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:27 +00:00
|
|
|
sha256 = "4d225c13e787471502ff94409dcf6f7927049b2ec251c63b764a4b17447b60c0";
|
2017-05-06 08:26:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
checkPhase = ''
|
2018-07-30 12:05:55 +01:00
|
|
|
pytest .
|
2017-05-06 08:26:32 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|