python.pkgs.chardet: 2.3.0 -> 3.0.4

This commit is contained in:
Jörg Thalheim
2017-08-27 13:26:52 +01:00
committed by Frederik Rietdijk
parent f3400b5ca9
commit b4dbd7fdb8
2 changed files with 23 additions and 15 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi
, pytest, pytestrunner, hypothesis }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "chardet";
version = "3.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "1bpalpia6r5x1kknbk11p1fzph56fmmnp405ds8icksd3knr5aw4";
};
buildInputs = [ pytest pytestrunner hypothesis ];
meta = with stdenv.lib; {
homepage = https://github.com/chardet/chardet;
description = "Universal encoding detector";
license = licenses.lgpl2;
maintainers = with maintainers; [ domenkozar ];
};
}