tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.chardet: 4.0.0 -> 5.0.0
Martin Weinelt
3 years ago
4775efd1
ca5112ce
+7
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
chardet
default.nix
+7
-2
pkgs/development/python-modules/chardet/default.nix
···
8
9
buildPythonPackage rec {
10
pname = "chardet";
11
-
version = "4.0.0";
12
disabled = pythonOlder "3.6";
13
14
src = fetchPypi {
15
inherit pname version;
16
-
sha256 = "sha256-DW9ToV20Eg8rCMlPEefZPSyRHuEYtrMKBOw+6DEBefo=";
17
};
18
19
checkInputs = [
20
hypothesis
21
pytestCheckHook
0
0
0
0
0
22
];
23
24
pythonImportsCheck = [ "chardet" ];
···
8
9
buildPythonPackage rec {
10
pname = "chardet";
11
+
version = "5.0.0";
12
disabled = pythonOlder "3.6";
13
14
src = fetchPypi {
15
inherit pname version;
16
+
sha256 = "sha256-A2jfK/14tfwgVyu06bt/tT4sCU9grpmTM56GcdCvuKo=";
17
};
18
19
checkInputs = [
20
hypothesis
21
pytestCheckHook
22
+
];
23
+
24
+
disabledTests = [
25
+
# flaky; https://github.com/chardet/chardet/issues/256
26
+
"test_detect_all_and_detect_one_should_agree"
27
];
28
29
pythonImportsCheck = [ "chardet" ];