writers: add writeGuile[Bin] (#364531)
[NixPkgs.git] / pkgs / development / python-modules / precis-i18n / default.nix
blob32e2b0dfb79a4d911b54f67b221499d4bf8bfac4
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "precis-i18n";
10   version = "1.1.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchFromGitHub {
16     owner = "byllyfish";
17     repo = "precis_i18n";
18     rev = "refs/tags/v${version}";
19     hash = "sha256-rtg3u8lnnmQFPsNC52LNVoEVu6CeHzAWvOjWBlzLKC4=";
20   };
22   pythonImportsCheck = [ "precis_i18n" ];
24   meta = with lib; {
25     description = "Internationalized usernames and passwords";
26     homepage = "https://github.com/byllyfish/precis_i18n";
27     changelog = "https://github.com/byllyfish/precis_i18n/blob/v${version}/CHANGELOG.rst";
28     license = licenses.mit;
29     maintainers = [ ];
30   };