nixpkgs/pkgs/development/python-modules/pylama/default.nix
R. RyanTM 11e25c1afd python36Packages.pylama: 7.5.5 -> 7.6.5
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
2018-10-24 10:09:52 +02:00

35 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 ];
};
}