Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / blessed / default.nix
blob70762d0c524a2c8f546b2809aae007d670756879
1 { lib, buildPythonPackage, fetchPypi, six
2 , wcwidth, pytest, mock, glibcLocales
3 }:
5 buildPythonPackage rec {
6   pname = "blessed";
7   version = "1.20.0";
8   format = "setuptools";
10   src = fetchPypi {
11     inherit pname version;
12     hash = "sha256-LN1n+HRuBI8A30eiiA9NasvNs5kDG2BONLqPcdV4doA=";
13   };
15   nativeCheckInputs = [ pytest mock glibcLocales ];
17   # Default tox.ini parameters not needed
18   checkPhase = ''
19     rm tox.ini
20     pytest
21   '';
23   propagatedBuildInputs = [ wcwidth six ];
25   meta = with lib; {
26     homepage = "https://github.com/jquast/blessed";
27     description = "A thin, practical wrapper around terminal capabilities in Python.";
28     maintainers = with maintainers; [ eqyiel ];
29     license = licenses.mit;
30   };