nixpkgs/pkgs/development/python-modules/rfc3987/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

21 lines
539 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "rfc3987";
version = "1.3.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "d3c4d257a560d544e9826b38bc81db676890c79ab9d7ac92b39c7a253d5ca733";
};
doCheck = false;
meta = with lib; {
homepage = "https://pypi.python.org/pypi/rfc3987";
license = licenses.gpl3Plus;
description = "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)";
maintainers = with maintainers; [ vanschelven ];
};
}