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