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.
master
Mira Ressel 2021-02-11 15:44:49 +01:00
parent a58a0b5098
commit 052a6c1bec
1 changed files with 7 additions and 6 deletions

View File

@ -1,15 +1,16 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k }:
buildPythonPackage rec {
pname = "precis-i18n";
version = "1.0.0";
version = "1.0.2";
disabled = !isPy3k;
src = fetchPypi {
pname = "precis_i18n";
inherit version;
sha256 = "0gjhvwd8aifx94rl1ag08vlmndyx2q3fkyqb0c4i46x3p2bc2yi2";
src = fetchFromGitHub {
owner = "byllyfish";
repo = "precis_i18n";
rev = "v${version}";
hash = "sha256:1r9pah1kgik6valf15ac7ybw0szr92cq84kwjvm6mq3z46j1pmkr";
};
meta = {