Merge pull request #155792 from r-ryantm/auto-update/python310Packages.precis-i18n

python310Packages.precis-i18n: 1.0.3 -> 1.0.4
This commit is contained in:
Fabian Affolter
2022-01-24 08:13:25 +01:00
committed by GitHub
@@ -1,21 +1,31 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "precis-i18n";
version = "1.0.3";
version = "1.0.4";
format = "setuptools";
disabled = !isPy3k;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "byllyfish";
repo = "precis_i18n";
rev = "v${version}";
hash = "sha256-pBmllX1RVdFnZsDSW7Hh5uVqK2d++kcp1NQLN/phXdU=";
hash = "sha256-90yNusUyz8qJi7WWYIFhHzrpvu1TqxfpT+lv2CVhSR8=";
};
meta = {
pythonImportsCheck = [
"precis_i18n"
];
meta = with lib; {
homepage = "https://github.com/byllyfish/precis_i18n";
description = "Internationalized usernames and passwords";
license = lib.licenses.mit;
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}