6d4aeb4377
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
32 lines
736 B
Nix
32 lines
736 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "precis-i18n";
|
|
version = "1.0.5";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "byllyfish";
|
|
repo = "precis_i18n";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-DSm+KomveGs9ZzNFiT0B1gAjx2fh0BaUdKW0J+kW24U=";
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"precis_i18n"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Internationalized usernames and passwords";
|
|
homepage = "https://github.com/byllyfish/precis_i18n";
|
|
changelog = "https://github.com/byllyfish/precis_i18n/blob/v${version}/CHANGELOG.rst";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|