mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
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:
parent
9df21abeb3
commit
120238bcba
20
pkgs/development/python-modules/precis-i18n/default.nix
Normal file
20
pkgs/development/python-modules/precis-i18n/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -3459,6 +3459,8 @@ in {
|
||||
name = "${python.libPrefix}-${pkgs.kmsxx.name}";
|
||||
});
|
||||
|
||||
precis-i18n = callPackage ../development/python-modules/precis-i18n { };
|
||||
|
||||
pvlib = callPackage ../development/python-modules/pvlib { };
|
||||
|
||||
pybase64 = callPackage ../development/python-modules/pybase64 { };
|
||||
|
Loading…
Reference in New Issue
Block a user