1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, pythonOlder
5}:
6
7buildPythonPackage rec {
8 pname = "precis-i18n";
9 version = "1.0.4";
10 format = "setuptools";
11
12 disabled = pythonOlder "3.7";
13
14 src = fetchFromGitHub {
15 owner = "byllyfish";
16 repo = "precis_i18n";
17 rev = "v${version}";
18 hash = "sha256-90yNusUyz8qJi7WWYIFhHzrpvu1TqxfpT+lv2CVhSR8=";
19 };
20
21 pythonImportsCheck = [
22 "precis_i18n"
23 ];
24
25 meta = with lib; {
26 homepage = "https://github.com/byllyfish/precis_i18n";
27 description = "Internationalized usernames and passwords";
28 license = licenses.mit;
29 maintainers = with maintainers; [ ];
30 };
31}