nixpkgs/pkgs/development/python-modules/precis-i18n/default.nix
Mira Ressel 052a6c1bec python.precis-i18n: 1.0.0 -> 1.0.2
1.0.0 is 3 years old and fails to build against python 3.9.

Fetch from github rather than pypi; the pypi release lacks supporting
files that are required to run the test suite.
2021-02-11 15:44:49 +01:00

22 lines
504 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, isPy3k }:
buildPythonPackage rec {
pname = "precis-i18n";
version = "1.0.2";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "byllyfish";
repo = "precis_i18n";
rev = "v${version}";
hash = "sha256:1r9pah1kgik6valf15ac7ybw0szr92cq84kwjvm6mq3z46j1pmkr";
};
meta = {
homepage = "https://github.com/byllyfish/precis_i18n";
description = "Internationalized usernames and passwords";
license = lib.licenses.mit;
};
}