tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python27Packages.cchardet: 2.1.5 -> 2.1.6
R. RyanTM
6 years ago
f2dbc018
e1c30853
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
cchardet
default.nix
+3
-3
pkgs/development/python-modules/cchardet/default.nix
reviewed
···
7
7
8
8
buildPythonPackage rec {
9
9
pname = "cchardet";
10
10
-
version = "2.1.5";
10
10
+
version = "2.1.6";
11
11
12
12
src = fetchPypi {
13
13
inherit pname version;
14
14
-
sha256 = "240efe3f255f916769458343840b9c6403cf3192720bc5129792cbcb88bf72fb";
14
14
+
sha256 = "1cs6y59qhbal8fgbyjk2lpjykh8kfjhq16clfssylsddb4hgnsmp";
15
15
};
16
16
17
17
checkInputs = [ nose ];
···
21
21
22
22
meta = {
23
23
description = "High-speed universal character encoding detector";
24
24
-
homepage = https://github.com/PyYoshi/cChardet;
24
24
+
homepage = "https://github.com/PyYoshi/cChardet";
25
25
license = lib.licenses.mpl11;
26
26
maintainers = with lib.maintainers; [ ivan ];
27
27
};