Merge pull request #167801 from dotlambda/pylama-8.3.8

python3Packages.pylama: 8.3.7 -> 8.3.8
This commit is contained in:
Martin Weinelt 2022-04-16 22:34:12 +02:00 committed by GitHub
commit 016297c037
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View file

@ -17,7 +17,7 @@
buildPythonPackage rec {
pname = "pylama";
version = "8.3.7";
version = "8.3.8";
format = "setuptools";
@ -26,7 +26,7 @@ buildPythonPackage rec {
owner = "klen";
repo = "pylama";
rev = version;
hash = "sha256-//mrvZb4bT4aATURqa4g1DUagYe9SoP3o3OrwmiEJnI=";
hash = "sha256-g6Lq5NaieUI/alxqoVFfL5VaCHwB/jLcp02/N1W69yE=";
};
patches = [
@ -72,6 +72,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Code audit tool for python";
homepage = "https://github.com/klen/pylama";
changelog = "https://github.com/klen/pylama/blob/${version}/Changelog";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};

View file

@ -4,8 +4,9 @@
, buildPythonPackage
, flake8-import-order
, pyflakes
, mock
, tomli
, setuptools
, mock
}:
buildPythonPackage rec {
@ -22,9 +23,10 @@ buildPythonPackage rec {
disabled = !isPy3k;
propagatedBuildInputs = [
pyflakes
flake8-import-order
pyflakes
setuptools
tomli
];
checkInputs = [