about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/yasi/default.nix
blob: 08068ed6b6b41985badabe0618660f527d8c0ece (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
35
36
37
38
39
40
41
42
43
44
45
46
47
{ lib
, buildPythonPackage
, colorama
, fetchFromGitHub
, pytestCheckHook
, setuptools
}:

buildPythonPackage rec {
  pname = "yasi";
  version = "2.1.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "nkmathew";
    repo = "yasi-sexp-indenter";
    rev = "v${version}";
    hash = "sha256-xKhVTmh/vrtBkatxtk8R4yqbGroH0I+xTKNYUpuikt4=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    colorama
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  postPatch = ''
    substituteInPlace setup.py \
      --replace "test.test_yasi" "tests.test_yasi"
  '';

  pythonImportsCheck = [ "yasi" ];

  meta = with lib; {
    description = "A dialect-aware s-expression indenter written in Python and newLISP";
    homepage = "https://github.com/nkmathew/yasi-sexp-indenter";
    changelog = "https://github.com/nkmathew/yasi-sexp-indenter/blob/${src.rev}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ kranzes ];
  };
}