Merge pull request #291465 from dotlambda/urwid-readline-0.14

python312Packages.urwid-readline: 0.13 -> 0.14
This commit is contained in:
Robert Schütz 2024-02-28 01:17:28 +00:00 committed by GitHub
commit 87e60f0ca9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,26 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, setuptools
, urwid
, glibcLocales
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "urwid_readline";
version = "0.13";
pname = "urwid-readline";
version = "0.14";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-AYAgy8hku17Ye+F9wmsGnq4nVcsp86nFaarDve0e+vQ=";
src = fetchFromGitHub {
owner = "rr-";
repo = "urwid_readline";
rev = "refs/tags/${version}";
hash = "sha256-ZTg+GZnu7R6Jf2+SIwVo57yHnjwuY92DElTJs8oRErE=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
urwid
];
pythonImportsCheck = [ "urwid_readline" ];
nativeCheckInputs = [
glibcLocales
pytestCheckHook
];