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.
This commit is contained in:
parent
a58a0b5098
commit
052a6c1bec
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user