mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
python3Packages.pybalboa: init at 0.13
This commit is contained in:
parent
2de888a972
commit
94e8a12a7a
34
pkgs/development/python-modules/pybalboa/default.nix
Normal file
34
pkgs/development/python-modules/pybalboa/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -6145,6 +6145,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user