mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
052a6c1bec
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.
22 lines
504 B
Nix
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;
|
|
};
|
|
}
|