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-03-24 09:28:09 +00:00
|
|
|
version = "1.5.6";
|
2017-10-29 13:13:52 +00:00
|
|
|
|
2017-10-29 13:18:17 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 09:28:09 +00:00
|
|
|
sha256 = "5454e6e9a3d02aae38f866eec0d9a7de4ab9f93c10a273fb0340f3d6d09f7514";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|