about summary refs log tree commit diff
path: root/pkgs/development/python-modules/unify/default.nix
blob: 9f6f7d929c6e449ffda3b36e7a832a9a74907537 (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
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  setuptools,
  pytestCheckHook,
  untokenize,
}:

buildPythonPackage rec {
  pname = "unify";
  version = "0.5";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "myint";
    repo = "unify";
    rev = "refs/tags/v${version}";
    hash = "sha256-cWV/Q+LbeIxnQNqyatRWQUF8X+HHlQdc10y9qJ7v3dA=";
  };

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [ untokenize ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "unify" ];

  disabledTests = [
    # https://github.com/myint/unify/issues/21
    "test_format_code"
    "test_format_code_with_backslash_in_comment"
  ];

  meta = with lib; {
    description = "Modifies strings to all use the same quote where possible";
    mainProgram = "unify";
    homepage = "https://github.com/myint/unify";
    license = licenses.mit;
    maintainers = with maintainers; [ FlorianFranzen ];
  };
}