mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
02dab4ab5c
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
31 lines
672 B
Nix
31 lines
672 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPyPy
|
|
, pkgs
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "8.1.2";
|
|
format = "setuptools";
|
|
pname = "gnureadline";
|
|
disabled = isPyPy;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-QmKmqjVqsi72QvQ6f5TrQqctbwxTLttOjGuTP1cwVtI=";
|
|
};
|
|
|
|
buildInputs = [ pkgs.ncurses ];
|
|
patchPhase = ''
|
|
substituteInPlace setup.py --replace "/bin/bash" "${pkgs.bash}/bin/bash"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The standard Python readline extension statically linked against the GNU readline library";
|
|
homepage = "https://github.com/ludwigschwardt/python-gnureadline";
|
|
license = licenses.gpl3;
|
|
};
|
|
|
|
}
|