2018-11-11 08:43:58 +00:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, pycodestyle, glibcLocales }:
|
2017-10-29 13:13:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-10-29 13:18:17 +00:00
|
|
|
pname = "autopep8";
|
2019-04-16 18:15:34 +01:00
|
|
|
version = "1.4.4";
|
2017-10-29 13:13:52 +00:00
|
|
|
|
2017-10-29 13:18:17 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 18:15:34 +01:00
|
|
|
sha256 = "4d8eec30cc81bc5617dbf1218201d770dc35629363547f17577c61683ccfb3ee";
|
2017-10-29 13:13:52 +00:00
|
|
|
};
|
|
|
|
|
2017-10-29 13:18:17 +00:00
|
|
|
propagatedBuildInputs = [ pycodestyle ];
|
2017-10-29 13:13:52 +00:00
|
|
|
|
|
|
|
# One test fails:
|
|
|
|
# FAIL: test_recursive_should_not_crash_on_unicode_filename (test.test_autopep8.CommandLineTests)
|
2018-11-11 08:43:58 +00:00
|
|
|
# doCheck = false;
|
|
|
|
|
|
|
|
checkInputs = [ glibcLocales ];
|
|
|
|
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
2017-10-29 13:13:52 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tool that automatically formats Python code to conform to the PEP 8 style guide";
|
|
|
|
homepage = https://pypi.python.org/pypi/autopep8/;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
|
|
};
|
|
|
|
}
|