nixpkgs/pkgs/development/python-modules/autopep8/default.nix

32 lines
828 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, pycodestyle, glibcLocales
2020-06-07 09:13:10 +01:00
, toml
}:
buildPythonPackage rec {
pname = "autopep8";
version = "1.5.6";
src = fetchPypi {
inherit pname version;
sha256 = "5454e6e9a3d02aae38f866eec0d9a7de4ab9f93c10a273fb0340f3d6d09f7514";
};
2020-06-07 09:13:10 +01:00
propagatedBuildInputs = [ pycodestyle toml ];
# 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";
meta = with 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 ];
};
}