nixpkgs/pkgs/development/python-modules/autopep8/default.nix
2018-12-03 16:50:39 +01:00

30 lines
824 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, pycodestyle, glibcLocales }:
buildPythonPackage rec {
pname = "autopep8";
version = "1.4.3";
src = fetchPypi {
inherit pname version;
sha256 = "33d2b5325b7e1afb4240814fe982eea3a92ebea712869bfd08b3c0393404248c";
};
propagatedBuildInputs = [ pycodestyle ];
# One test fails:
# FAIL: test_recursive_should_not_crash_on_unicode_filename (test.test_autopep8.CommandLineTests)
# doCheck = false;
checkInputs = [ glibcLocales ];
LC_ALL = "en_US.UTF-8";
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 ];
};
}