about summary refs log tree commit diff
path: root/pkgs/development/python-modules/precis-i18n/default.nix
blob: f6e0459139a0dadc8895c3e92e5f752b21aceabf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:

buildPythonPackage rec {
  pname = "precis-i18n";
  version = "1.0.4";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "byllyfish";
    repo = "precis_i18n";
    rev = "v${version}";
    hash = "sha256-90yNusUyz8qJi7WWYIFhHzrpvu1TqxfpT+lv2CVhSR8=";
  };

  pythonImportsCheck = [
    "precis_i18n"
  ];

  meta = with lib; {
    homepage = "https://github.com/byllyfish/precis_i18n";
    description = "Internationalized usernames and passwords";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}