python3Packages.rtmapi: init at 0.7.2

This commit is contained in:
Jamie Magee
2025-08-13 20:32:05 -07:00
parent 89723d1c9c
commit 72417d3791
2 changed files with 47 additions and 0 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 ];
};
}
+2
View File
@@ -15979,6 +15979,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 { };