nixpkgs/pkgs/development/python-modules/orderedset/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

23 lines
575 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "orderedset";
version = "2.0.3";
format = "setuptools";
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 = [ ];
# No support for Python 3.9/3.10
# https://github.com/simonpercivall/orderedset/issues/36
broken = true;
};
}