Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
597 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "ebusdpy";
version = "0.0.17";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-t6O/fOBrJuDYpCVnkL+hUzyqMoGKFj5UYNoD6ExikNM=";
};
build-system = [ setuptools ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "ebusdpy" ];
meta = {
description = "eBusd python integration library";
homepage = "https://github.com/CrazYoshi/ebusdpy";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}