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-11-25 22:46:38 +00:00
|
|
|
version = "1.6.0";
|
2017-10-29 13:13:52 +00:00
|
|
|
|
2017-10-29 13:18:17 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-25 22:46:38 +00:00
|
|
|
sha256 = "44f0932855039d2c15c4510d6df665e4730f2b8582704fa48f9c55bd3e17d979";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|