3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.precis-i18n: init at 1.0.0

This package is required since Gajim version 1.1.0 and I intentionally
didn't set meta.maintainers because I'm not going to be able to maintain
this package, except if Gajim requires a newer version.

Signed-off-by: aszlig <aszlig@nix.build>
This commit is contained in:
aszlig 2019-01-28 16:06:10 +01:00 committed by Robert Schütz
parent 9df21abeb3
commit 120238bcba
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,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;
};
}

View file

@ -3459,6 +3459,8 @@ in {
name = "${python.libPrefix}-${pkgs.kmsxx.name}"; name = "${python.libPrefix}-${pkgs.kmsxx.name}";
}); });
precis-i18n = callPackage ../development/python-modules/precis-i18n { };
pvlib = callPackage ../development/python-modules/pvlib { }; pvlib = callPackage ../development/python-modules/pvlib { };
pybase64 = callPackage ../development/python-modules/pybase64 { }; pybase64 = callPackage ../development/python-modules/pybase64 { };