mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
67651d80bc
Python: several fixes
23 lines
571 B
Nix
23 lines
571 B
Nix
{ 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 ];
|
|
};
|
|
}
|