Merge pull request #144640 from mattmelling/editdistance

python3Packages.editdistance: fix broken version tag
This commit is contained in:
Fabian Affolter 2021-11-04 22:38:05 +01:00 committed by GitHub
commit 48751f1371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,8 +13,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "roy-ht";
repo = pname;
rev = version;
sha256 = "1qajskfyx2ki81ybksf0lgl1pdyw7al4ci39zrj66ylsn8fssg89";
rev = "v${version}";
sha256 = "17xkndwdyf14nfxk25z1qnhkzm0yxw65fpj78c01haq241zfzjr5";
};
nativeBuildInputs = [ cython ];