depot/third_party/nixpkgs/pkgs/development/python-modules/python-i18n/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

24 lines
621 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pyyaml }:
buildPythonPackage rec {
pname = "python-i18n";
version = "0.3.9";
src = fetchFromGitHub {
owner = "danhper";
repo = pname;
rev = "v${version}";
sha256 = "6FahoHZqaOWYGaT9RqLARCm2kLfUIlYuauB6+0eX7jA=";
};
checkInputs = [ pytestCheckHook pyyaml ];
pytestFlagsArray = [ "i18n/tests/run_tests.py" ];
meta = with lib; {
description = "Easy to use i18n library";
homepage = "https://github.com/danhper/python-i18n";
license = with licenses; [ mit ];
maintainers = with maintainers; [ angustrau ];
};
}