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