{ lib , fetchFromSourcehut , buildPythonPackage , srht , pyyaml , buildsrht }: buildPythonPackage rec { pname = "scmsrht"; version = "0.22.23"; src = fetchFromSourcehut { owner = "~sircmpwn"; repo = "scm.sr.ht"; rev = version; sha256 = "sha256-058dOEYJDY3jtxH1VkV1CFq5CZTkauSnTWg57DCnNtw="; }; propagatedBuildInputs = [ srht pyyaml buildsrht ]; preBuild = '' export PKGVER=${version} ''; dontUseSetuptoolsCheck = true; pythonImportsCheck = [ "scmsrht" ]; meta = with lib; { homepage = "https://git.sr.ht/~sircmpwn/scm.sr.ht"; description = "Shared support code for sr.ht source control services."; license = licenses.agpl3Only; maintainers = with maintainers; [ eadwu ]; }; }