summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/bpylist2/default.nix
blob: 7becd01e194bf31aedb52ed28d4b8bab88f42bd0 (plain)
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
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
  pytestCheckHook,
}:

buildPythonPackage {
  pname = "bpylist2";
  version = "4.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "parabolala";
    repo = "bpylist2";
    rev = "ddb89e0b0301c6b298de6469221d99b5fe127b58";
    hash = "sha256-OBwDQZL5++LZgpQM96tmplAh1Pjme3KGSNFTKqKUn00=";
  };

  build-system = [ poetry-core ];

  pythonImportsCheck = [ "bpylist2" ];
  nativeCheckInputs = [ pytestCheckHook ];

  postPatch = ''
    substituteInPlace setup.cfg \
      --replace-fail "--pycodestyle" "" \
      --replace-fail "--pylint --pylint-rcfile=pylint.rc" "" \
      --replace-fail "--mypy" ""
  '';

  meta = {
    description = "Parse and Generate binary plists and NSKeyedArchiver archives";
    license = lib.licenses.mit;
    homepage = "https://github.com/parabolala/bpylist2";
    maintainers = with lib.maintainers; [ sigmanificient ];
  };
}