bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pyopenssl,
|
|
twisted,
|
|
service-identity,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "txgithub";
|
|
version = "15.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "16gbizy8vkxasxylwzj4p66yw8979nvzxdj6csidgmng7gi2k8nx";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pyopenssl
|
|
twisted
|
|
service-identity
|
|
];
|
|
|
|
# fix python3 issues
|
|
patchPhase = ''
|
|
sed -i 's/except usage.UsageError, errortext/except usage.UsageError as errortext/' txgithub/scripts/create_token.py
|
|
sed -i 's/except usage.UsageError, errortext/except usage.UsageError as errortext/' txgithub/scripts/gist.py
|
|
sed -i 's/print response\[\x27html_url\x27\]/print(response\[\x27html_url\x27\])/' txgithub/scripts/gist.py
|
|
sed -i '41d' txgithub/scripts/gist.py
|
|
sed -i '41d' txgithub/scripts/gist.py
|
|
'';
|
|
|
|
# No tests distributed
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "GitHub API client implemented using Twisted";
|
|
homepage = "https://github.com/tomprince/txgithub";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|