depot/third_party/nixpkgs/pkgs/development/python-modules/pyblackbird/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

41 lines
896 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pyserial,
pyserial-asyncio,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pyblackbird";
version = "0.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "koolsb";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-+ehzrr+RrwFKOOuxBq3+mwnuMPxZFV4QTZG1IRgsbLc=";
};
propagatedBuildInputs = [
pyserial
pyserial-asyncio
];
# Test setup try to create a serial port
doCheck = false;
pythonImportsCheck = [ "pyblackbird" ];
meta = with lib; {
description = "Python implementation for Monoprice Blackbird units";
homepage = "https://github.com/koolsb/pyblackbird";
changelog = "https://github.com/koolsb/pyblackbird/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}