2017-10-29 13:18:17 +00:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, pycodestyle }:
|
2017-10-29 13:13:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-10-29 13:18:17 +00:00
|
|
|
pname = "autopep8";
|
|
|
|
version = "1.3.3";
|
|
|
|
name = "${pname}-${version}";
|
2017-10-29 13:13:52 +00:00
|
|
|
|
2017-10-29 13:18:17 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0c1gl648g2xnz3j0rsp71ld4i32zlglmqjvqf4q8r08jp3zpny7z";
|
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)
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|