2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, pycodestyle, glibcLocales
|
2020-06-07 09:13:10 +01:00
|
|
|
, toml
|
|
|
|
}:
|
2017-10-29 13:13:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-10-29 13:18:17 +00:00
|
|
|
pname = "autopep8";
|
2021-02-20 09:09:07 +00:00
|
|
|
version = "1.5.5";
|
2017-10-29 13:13:52 +00:00
|
|
|
|
2017-10-29 13:18:17 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 09:09:07 +00:00
|
|
|
sha256 = "cae4bc0fb616408191af41d062d7ec7ef8679c7f27b068875ca3a9e2878d5443";
|
2017-10-29 13:13:52 +00:00
|
|
|
};
|
|
|
|
|
2020-06-07 09:13:10 +01:00
|
|
|
propagatedBuildInputs = [ pycodestyle toml ];
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-10-29 13:13:52 +00:00
|
|
|
description = "A tool that automatically formats Python code to conform to the PEP 8 style guide";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/autopep8/";
|
2017-10-29 13:13:52 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
|
|
};
|
|
|
|
}
|