python3Packages.rtmapi: init at 0.7.2 (#433548)

This commit is contained in:
Martin Weinelt
2025-08-14 13:00:00 +02:00
committed by GitHub
3 changed files with 50 additions and 1 deletions
@@ -0,0 +1,45 @@
{
lib,
buildPythonPackage,
fetchFromBitbucket,
setuptools,
httplib2,
}:
buildPythonPackage rec {
pname = "rtmapi";
version = "0.7.2";
pyproject = true;
src = fetchFromBitbucket {
owner = "rtmapi";
repo = "rtmapi";
rev = "release-${version}";
hash = "sha256-+aJ7T5bE+N9bINf6S3v48wUGXQ/ikz1Xb15xWbConT4=";
};
build-system = [
setuptools
];
dependencies = [
httplib2
];
postPatch = ''
substituteInPlace setup.py \
--replace-fail "use_2to3=True," ""
'';
# package has no tests
doCheck = false;
pythonImportsCheck = [ "rtmapi" ];
meta = {
description = "API package for rememberthemilk.com";
homepage = "https://bitbucket.org/rtmapi/rtmapi";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -4911,7 +4911,8 @@
"remember_the_milk" =
ps: with ps; [
httplib2
]; # missing inputs: RtmAPI
rtmapi
];
"remote" =
ps: with ps; [
];
@@ -7560,6 +7561,7 @@
"reddit"
"refoss"
"rehlko"
"remember_the_milk"
"remote"
"remote_calendar"
"renault"
+2
View File
@@ -15985,6 +15985,8 @@ self: super: with self; {
rtfunicode = callPackage ../development/python-modules/rtfunicode { };
rtmapi = callPackage ../development/python-modules/rtmapi { };
rtmidi-python = callPackage ../development/python-modules/rtmidi-python { };
rtmixer = callPackage ../development/python-modules/rtmixer { };