Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / urwid-readline / default.nix
blob7d24067fd11019fefb04ac3167cf52fbb4b27761
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , urwid
5 , glibcLocales
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "urwid_readline";
11   version = "0.13";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-AYAgy8hku17Ye+F9wmsGnq4nVcsp86nFaarDve0e+vQ=";
16   };
18   propagatedBuildInputs = [
19     urwid
20   ];
22   nativeCheckInputs = [
23     glibcLocales
24     pytestCheckHook
25   ];
27   meta = with lib; {
28     description = "A textbox edit widget for urwid that supports readline shortcuts";
29     homepage = "https://github.com/rr-/urwid_readline";
30     license = licenses.mit;
31     maintainers = with maintainers; [ dotlambda ];
32   };