nixpkgs/pkgs/development/python-modules/chardet/default.nix
Frederik Rietdijk b3febfb850 python.pkgs.pytest_3: keep older version
because not all test suites are compatible with 4 yet.
2019-02-17 14:40:48 +01:00

22 lines
543 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, pytest_3, pytestrunner, hypothesis }:
buildPythonPackage rec {
pname = "chardet";
version = "3.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "1bpalpia6r5x1kknbk11p1fzph56fmmnp405ds8icksd3knr5aw4";
};
checkInputs = [ pytest_3 pytestrunner hypothesis ];
meta = with stdenv.lib; {
homepage = https://github.com/chardet/chardet;
description = "Universal encoding detector";
license = licenses.lgpl2;
maintainers = with maintainers; [ domenkozar ];
};
}