forked from axeman/erpnext-nix
15 lines
280 B
Nix
15 lines
280 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "unidecode";
|
|
version = "1.2.0";
|
|
src = fetchPypi {
|
|
pname = "Unidecode";
|
|
inherit version;
|
|
sha256 = "sha256-jXOpfTh6lWkiNE9rdCQ8LGdxWUZZd4dEstvarY9rcn0=";
|
|
};
|
|
propagatedBuildInputs = [];
|
|
}
|