Files
nixpkgs/pkgs/development/python-modules/python-lzf/default.nix
T
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

20 lines
447 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
version = "0.2.4";
format = "setuptools";
pname = "python-lzf";
src = fetchPypi {
inherit pname version;
sha256 = "1l8m6vzwm1m8hn7ldw8j8r2b6r199k8z3q0wnhdyy4p68hahyhni";
};
meta = with lib; {
description = "liblzf python bindings";
homepage = "https://github.com/teepark/python-lzf";
license = licenses.mit;
platforms = platforms.unix;
};
}