summary refs log tree commit diff
path: root/pkgs/development/python-modules/blist/default.nix
blob: 52687bf2506de990aa2cbb0ba7981b0329556ecf (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
{ stdenv
, buildPythonPackage
, fetchpatch
, fetchPypi
, isPyPy
}:

buildPythonPackage rec {
  pname = "blist";
  version = "1.3.6";
  disabled = isPyPy;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1hqz9pqbwx0czvq9bjdqjqh5bwfksva1is0anfazig81n18c84is";
  };


  patches = [
    # Fix compatibility for Python 3.7 https://github.com/DanielStutzbach/blist/pull/78
    (fetchpatch {
      url = "https://github.com/DanielStutzbach/blist/commit/2dc1ec28ed68611fcec9ac1c68070c782d6b4b4e.patch";
      sha256 = "0ma0z6ga80w3wzh3sidwd8ckfbgx4j1y7cc29q6j9ddrvxpf276y";
    })
  ];

  meta = with stdenv.lib; {
    homepage = "http://stutzbachenterprises.com/blist/";
    description = "A list-like type with better asymptotic performance and similar performance on small lists";
    license = licenses.bsd0;
  };

}