aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/sortedcontainers/default.nix
blob: 9df3d809f2cbc44d096a80ad952bad1b3454af97 (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
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "sortedcontainers";
  version = "2.2.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4e73a757831fc3ca4de2859c422564239a31d8213d09a2a666e375807034d2ba";
  };

  # pypi tarball does not come with tests
  doCheck = false;

  meta = {
    description = "Python Sorted Container Types: SortedList, SortedDict, and SortedSet";
    homepage = "http://www.grantjenks.com/docs/sortedcontainers/";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ costrouc ];
  };
}