python.pkgs.wcwidth: improve expression
use fetchPypi, pname, and correct indentation
This commit is contained in:
parent
0cb74f6f14
commit
8de375bf7b
@ -1,26 +1,26 @@
|
|||||||
{ stdenv, fetchurl, buildPythonPackage }:
|
{ lib, fetchPypi, buildPythonPackage }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
name = "wcwidth-${version}";
|
pname = "wcwidth";
|
||||||
version = "0.1.7";
|
version = "0.1.7";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchPypi {
|
||||||
url = "mirror://pypi/w/wcwidth/${name}.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "0pn6dflzm609m4r3i8ik5ni9ijjbb5fa3vg1n7hn6vkd49r77wrx";
|
sha256 = "0pn6dflzm609m4r3i8ik5ni9ijjbb5fa3vg1n7hn6vkd49r77wrx";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Checks fail due to missing tox.ini file:
|
# Checks fail due to missing tox.ini file:
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Measures number of Terminal column cells of wide-character codes";
|
description = "Measures number of Terminal column cells of wide-character codes";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
This API is mainly for Terminal Emulator implementors -- any Python
|
This API is mainly for Terminal Emulator implementors -- any Python
|
||||||
program that attempts to determine the printable width of a string on
|
program that attempts to determine the printable width of a string on
|
||||||
a Terminal. It is implemented in python (no C library calls) and has
|
a Terminal. It is implemented in python (no C library calls) and has
|
||||||
no 3rd-party dependencies.
|
no 3rd-party dependencies.
|
||||||
'';
|
'';
|
||||||
homepage = https://github.com/jquast/wcwidth;
|
homepage = https://github.com/jquast/wcwidth;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user