Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 491 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, setuptools }: 2 3buildPythonPackage rec { 4 pname = "babelfish"; 5 version = "0.5.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8380879fa51164ac54a3e393f83c4551a275f03617f54a99d70151358e444104"; 10 }; 11 12 propagatedBuildInputs = [ setuptools ]; 13 14 meta = with stdenv.lib; { 15 homepage = "https://pypi.python.org/pypi/babelfish"; 16 description = "A module to work with countries and languages"; 17 license = licenses.bsd3; 18 }; 19}