Merge pull request #145463 from fabaff/pybalboa

python3Packages.pybalboa: init at 0.13
This commit is contained in:
Fabian Affolter 2021-11-12 09:03:34 +01:00 committed by GitHub
commit 1180971749
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "pybalboa";
version = "0.13";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "garbled1";
repo = pname;
rev = version;
sha256 = "0aw5jxpsvzyx05y1mg8d63lxx1i607yb6x19n9jil5wfis95m8pd";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"pybalboa"
];
meta = with lib; {
description = " Python module to interface with a Balboa Spa";
homepage = "https://github.com/garbled1/pybalboa";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6151,6 +6151,8 @@ in {
pyaxmlparser = callPackage ../development/python-modules/pyaxmlparser { };
pybalboa = callPackage ../development/python-modules/pybalboa { };
pybase64 = callPackage ../development/python-modules/pybase64 { };
pybids = callPackage ../development/python-modules/pybids { };