pycodestyle: 2.0.0 -> 2.3.1

This commit is contained in:
Langston Barrett 2017-07-13 00:32:27 +00:00
parent eb28340bac
commit 7b27f7c28f
2 changed files with 20 additions and 16 deletions

@ -0,0 +1,19 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pycodestyle";
version = "2.3.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0rk78b66p57ala26mdldl9lafr48blv5s659sah9q50qnfjmc8k8";
};
meta = with lib; {
description = "Python style guide checker (formerly called pep8)";
homepage = https://pycodestyle.readthedocs.io;
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
};
}

@ -10671,22 +10671,7 @@ in {
};
};
pycodestyle = buildPythonPackage rec {
name = "pycodestyle-${version}";
version = "2.0.0";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pycodestyle/${name}.tar.gz";
sha256 = "1rz2v8506mdjdyxcnv9ygiw6v0d4dqx8z5sjyjm0w2v32h5l5w1p";
};
meta = {
description = "Python style guide checker (formerly called pep8)";
homepage = https://pycodestyle.readthedocs.io;
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
};
};
pycodestyle = callPackage ../development/python-modules/pycodestyle { };
filebytes = buildPythonPackage rec {
name = "filebytes-0.9.12";