4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
32 lines
836 B
Nix
32 lines
836 B
Nix
{ lib, stdenv, fetchPypi, buildPythonPackage, pycodestyle, glibcLocales
|
|
, toml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "autopep8";
|
|
version = "1.5.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d21d3901cb0da6ebd1e83fc9b0dfbde8b46afc2ede4fe32fbda0c7c6118ca094";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pycodestyle toml ];
|
|
|
|
# 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 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 ];
|
|
};
|
|
}
|