depot/third_party/nixpkgs/pkgs/development/python-modules/normality/default.nix
Default email 2189cff663 Project import generated by Copybara.
GitOrigin-RevId: 1fe6ed37fd9beb92afe90671c0c2a662a03463dd
2021-04-24 22:57:28 -05:00

42 lines
732 B
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, text-unidecode
, chardet
, banal
, PyICU
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "normality";
version = "2.1.3";
src = fetchFromGitHub {
owner = "pudo";
repo = "normality";
rev = version;
sha256 = "WvpMs02vBGnCSPkxo6r6g4Di2fKkUr2SsBflTBxlhkU=";
};
propagatedBuildInputs = [
text-unidecode
chardet
banal
PyICU
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"normality"
];
meta = with lib; {
description = "Micro-library to normalize text strings";
homepage = "https://github.com/pudo/normality";
license = licenses.mit;
maintainers = teams.determinatesystems.members;
};
}