summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/sigparse/default.nix
blob: b28237b12fa14d8238bad79c9de1c29e52f0b50a (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
40
41
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
  pytestCheckHook,
  fetchpatch,
}:

buildPythonPackage (finalAttrs: {
  pname = "sigparse";
  version = "3.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Lunarmagpie";
    repo = "sigparse";
    tag = "v${finalAttrs.version}";
    hash = "sha256-VzWDqplYgwrJXXd5IUzEIp0YRuofybqmGrNKPaGqQFM=";
  };

  patches = [
    # pyproject.toml version file is set as 1.0.0
    (fetchpatch {
      url = "https://github.com/Lunarmagpie/sigparse/pull/14/commits/44780382410bc6913bdd8ff7e92948078adb736c.patch";
      hash = "sha256-3EOkdBQDBodMBp4ENdvquJlRvAAywQhdWAX4dWFmhL0=";
    })
  ];

  build-system = [ poetry-core ];
  pythonImportsCheck = [ "sigparse" ];

  nativeCheckInputs = [ pytestCheckHook ];

  meta = {
    description = "Backports python 3.10 typing features into 3.7, 3.8, and 3.9";
    license = lib.licenses.mit;
    homepage = "https://github.com/Lunarmagpie/sigparse";
    maintainers = with lib.maintainers; [ sigmanificient ];
  };
})