summary refs log tree commit diff
path: root/pkgs/development/python-modules/black/default.nix
blob: f070ab4fd7a4b9b20e3d7d6a0fca309c32141656 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder
, attrs, click, toml, appdirs
, glibcLocales, pytest }:

buildPythonPackage rec {
  pname = "black";
  version = "18.9b0";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1992ramdwv8sg4mbl5ajirwj5i4a48zjgsycib0fnbaliyiajc70";
  };

  checkInputs =  [ pytest glibcLocales ];

  checkPhase = ''
    # no idea, why those fail.
    LC_ALL="en_US.UTF-8" HOME="$NIX_BUILD_TOP" \
      pytest \
        -k "not test_cache_multiple_files and not test_failed_formatting_does_not_get_cached"
  '';

  propagatedBuildInputs = [ attrs appdirs click toml ];

  meta = with stdenv.lib; {
    description = "The uncompromising Python code formatter";
    homepage    = https://github.com/ambv/black;
    license     = licenses.mit;
    maintainers = with maintainers; [ sveitser ];
  };

}