nixpkgs/pkgs/development/python-modules/adext/default.nix
2024-05-12 09:35:55 +02:00

42 lines
757 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
, alarmdecoder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "adext";
version = "0.4.3";
pyproject = true;
src = fetchFromGitHub {
owner = "ajschmidt8";
repo = "adext";
rev = "refs/tags/v${version}";
hash = "sha256-y8BvcSc3vD0FEWiyzW2Oh6PBS2Itjs2sz+9Dzh5yqSg=";
};
build-system = [
setuptools-scm
];
dependencies = [
alarmdecoder
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "adext" ];
meta = with lib; {
description = "Python extension for AlarmDecoder";
homepage = "https://github.com/ajschmidt8/adext";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}