about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/bidict/default.nix
blob: f2c2ce7958f112b2374de762058317c88eaab136 (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
49
50
51
52
53
54
55
56
57
58
59
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, sphinx
, hypothesis
, py
, pytest-xdist
, pytestCheckHook
, pytest-benchmark
, sortedcollections
, sortedcontainers
, typing-extensions
, pythonOlder
}:

buildPythonPackage rec {
  pname = "bidict";
  version = "0.23.1";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "jab";
    repo = "bidict";
    rev = "refs/tags/v${version}";
    hash = "sha256-WE0YaRT4a/byvU2pzcByuf1DfMlOpYA9i0PPrKXsS+M=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    sphinx
  ];

  nativeCheckInputs = [
    hypothesis
    py
    pytest-xdist
    pytestCheckHook
    pytest-benchmark
    sortedcollections
    sortedcontainers
    typing-extensions
  ];

  pythonImportsCheck = [ "bidict" ];

  meta = with lib; {
    homepage = "https://github.com/jab/bidict";
    changelog = "https://github.com/jab/bidict/blob/v${version}/CHANGELOG.rst";
    description = "Efficient, Pythonic bidirectional map data structures and related functionality";
    license = licenses.mpl20;
    maintainers = with maintainers; [ jakewaksbaum ];
  };
}