1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "orderedset";
9 version = "2.0.3";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0abf19w37kxypsj6v7dz79jj92y1kivjk2zivnrv7rw6bbxwrxdj";
15 };
16
17 meta = with lib; {
18 description = "Ordered Set implementation in Cython";
19 homepage = "https://pypi.python.org/pypi/orderedset";
20 license = licenses.bsd3;
21 maintainers = [ ];
22 # No support for Python 3.9/3.10
23 # https://github.com/simonpercivall/orderedset/issues/36
24 broken = true;
25 };
26}