about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/plum-py/default.nix
blob: b0cd4c4aea5b9fada00fda2b383c049ec4965ec6 (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
48
{ lib
, baseline
, buildPythonPackage
, fetchFromGitLab
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "plum-py";
  version = "0.8.6";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchFromGitLab {
    owner = "dangass";
    repo = "plum";
    rev = "refs/tags/${version}";
    hash = "sha256-gZSRqijKdjqOZe1+4aeycpCPsh6HC5sRbyVjgK+g4wM=";
  };

  postPatch = ''
    # Drop broken version specifier
    sed -i "/python_requires =/d" setup.cfg
  '';

  nativeCheckInputs = [
    baseline
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "plum"
  ];

  pytestFlagsArray = [
    "tests"
  ];

  meta = with lib; {
    description = "Classes and utilities for packing/unpacking bytes";
    homepage = "https://plum-py.readthedocs.io/";
    changelog = "https://gitlab.com/dangass/plum/-/blob/${version}/docs/release_notes.rst";
    license = licenses.mit;
    maintainers = with maintainers; [ dnr ];
  };
}