Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, six }: 2 3buildPythonPackage rec { 4 pname = "langdetect"; 5 version = "1.0.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 extension = "zip"; 10 sha256 = "0c5zm6c7xzsigbb9c7v4r33fcpz911zscfwvh3dq1qxdy3ap18ci"; 11 }; 12 13 propagatedBuildInputs = [ six ]; 14 15 meta = with lib; { 16 description = "Python port of Google's language-detection library"; 17 homepage = "https://github.com/Mimino666/langdetect"; 18 license = licenses.asl20; 19 maintainers = with maintainers; [ earvstedt ]; 20 }; 21}