mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 15:43:39 +00:00
python311Packages.pyacaia-async: init at 0.0.7
This commit is contained in:
parent
3a388f757b
commit
bed5a19747
45
pkgs/development/python-modules/pyacaia-async/default.nix
Normal file
45
pkgs/development/python-modules/pyacaia-async/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, bleak
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, wheel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyacaia-async";
|
||||
version = "0.0.7";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "pyacaia_async";
|
||||
inherit version;
|
||||
hash = "sha256-G3+mp/+skczj/GpvrzI/vSaZ/RC3vQz2d/hiD5WpGzM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
bleak
|
||||
];
|
||||
|
||||
# Module has no tests in PyPI releases
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyacaia_async"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module to interact with Acaia scales";
|
||||
homepage = "https://github.com/zweckj/pyacaia_async";
|
||||
license = with licenses; [ gpl3Only mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -9625,6 +9625,8 @@ self: super: with self; {
|
||||
|
||||
py4j = callPackage ../development/python-modules/py4j { };
|
||||
|
||||
pyacaia-async = callPackage ../development/python-modules/pyacaia-async { };
|
||||
|
||||
pyacoustid = callPackage ../development/python-modules/pyacoustid { };
|
||||
|
||||
pyads = callPackage ../development/python-modules/pyads { };
|
||||
|
Loading…
Reference in New Issue
Block a user