mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
ftfy: init at 4.4.3
This commit is contained in:
parent
58b28484ed
commit
fe17ed640a
35
pkgs/development/python-modules/ftfy/default.nix
Normal file
35
pkgs/development/python-modules/ftfy/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, html5lib
|
||||
, wcwidth
|
||||
, nose
|
||||
, python
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "ftfy";
|
||||
version = "4.4.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "152xdb56rhs1q4r0ck1n557sbphw7zq18r75a7kkd159ckdnc01w";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ html5lib wcwidth];
|
||||
|
||||
buildInputs = [
|
||||
nose
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
nosetests -v
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Given Unicode text, make its representation consistent and possibly less broken.";
|
||||
homepage = https://github.com/LuminosoInsight/python-ftfy/tree/master/tests;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ sdll ];
|
||||
};
|
||||
}
|
@ -28717,6 +28717,8 @@ EOF
|
||||
|
||||
cymem = callPackage ../development/python-modules/cymem { };
|
||||
|
||||
ftfy = callPackage ../development/python-modules/ftfy { };
|
||||
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
Loading…
Reference in New Issue
Block a user