sourcehut.listssrht: 0.45.15 -> 0.48.19

authored by

Thomas Bereknyei and committed by
tomberek
9636d25a 350f4867

+18 -8
+18 -8
pkgs/applications/version-management/sourcehut/lists.nix
··· 1 - { lib, fetchgit, buildPythonPackage 2 - , srht, asyncpg, aiosmtpd, pygit2, emailthreads }: 1 + { lib 2 + , fetchFromSourcehut 3 + , buildPythonPackage 4 + , srht 5 + , asyncpg 6 + , aiosmtpd 7 + , pygit2 8 + , emailthreads 9 + , redis 10 + , python 11 + }: 3 12 4 13 buildPythonPackage rec { 5 14 pname = "listssrht"; 6 - version = "0.45.15"; 15 + version = "0.48.19"; 7 16 8 - src = fetchgit { 9 - url = "https://git.sr.ht/~sircmpwn/lists.sr.ht"; 17 + src = fetchFromSourcehut { 18 + owner = "~sircmpwn"; 19 + repo = "lists.sr.ht"; 10 20 rev = version; 11 - sha256 = "0f3yl5nf385j7mhcrmda7zk58i1y6fm00i479js90xxhjifmqkq6"; 21 + sha256 = "sha256-bsakEMyvWaxiE4/SGcAP4mlGG9jkdHfFxpt9H+TJn/8="; 12 22 }; 13 23 14 24 nativeBuildInputs = srht.nativeBuildInputs; ··· 19 29 asyncpg 20 30 aiosmtpd 21 31 emailthreads 32 + redis 22 33 ]; 23 34 24 35 preBuild = '' 25 36 export PKGVER=${version} 37 + export SRHT_PATH=${srht}/${python.sitePackages}/srht 26 38 ''; 27 - 28 - dontUseSetuptoolsCheck = true; 29 39 30 40 meta = with lib; { 31 41 homepage = "https://git.sr.ht/~sircmpwn/lists.sr.ht";