summary refs log tree commit diff
path: root/pkgs/development/python-modules/precis-i18n/default.nix
blob: 199a6804ea987faa2f14947f1ec443e24d9fa0e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi, isPy3k }:

buildPythonPackage rec {
  pname = "precis-i18n";
  version = "1.0.0";

  disabled = !isPy3k;

  src = fetchPypi {
    pname = "precis_i18n";
    inherit version;
    sha256 = "0gjhvwd8aifx94rl1ag08vlmndyx2q3fkyqb0c4i46x3p2bc2yi2";
  };

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