11e25c1afd
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-pylama/versions
34 lines
783 B
Nix
34 lines
783 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, eradicate, mccabe, pycodestyle, pydocstyle, pyflakes
|
|
, pytest, ipdb }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pylama";
|
|
version = "7.6.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0277pr066vg1w8ip6kdava7d5daiv7csixpysb37ss140k222iiv";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
eradicate
|
|
mccabe
|
|
pycodestyle
|
|
pydocstyle
|
|
pyflakes
|
|
];
|
|
|
|
checkInputs = [ pytest ipdb ];
|
|
|
|
# tries to mess with the file system
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Code audit tool for python";
|
|
homepage = https://github.com/klen/pylama;
|
|
# ambiguous license declarations: https://github.com/klen/pylama/issues/64
|
|
license = [ licenses.lgpl3 ];
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|