My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/orderedset/default.nix

21 lines
570 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "orderedset";
version = "2.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "0abf19w37kxypsj6v7dz79jj92y1kivjk2zivnrv7rw6bbxwrxdj";
};
meta = with lib; {
description = "An Ordered Set implementation in Cython";
homepage = "https://pypi.python.org/pypi/orderedset";
license = licenses.bsd3;
maintainers = [ maintainers.jtojnar ];
# No support for Python 3.9/3.10
# https://github.com/simonpercivall/orderedset/issues/36
broken = true;
};
}