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

View File

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