depot/third_party/nixpkgs/pkgs/development/python-modules/precis-i18n/default.nix
Default email 0eeabdeb66 Project import generated by Copybara.
GitOrigin-RevId: c07b471b52be8fbc49a7dc194e9b37a6e19ee04d
2022-01-24 21:21:06 -06:00

31 lines
635 B
Nix

{ 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; [ ];
};
}