Files
nixpkgs/pkgs/development/python-modules/lupupy/default.nix
T
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

49 lines
887 B
Nix

{ lib
, buildPythonPackage
, colorlog
, pyyaml
, fetchPypi
, pythonOlder
, requests
, setuptools
}:
buildPythonPackage rec {
pname = "lupupy";
version = "0.3.2";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-A92Jk6WlRKep3dkbqLiYYHklEh0pyncipRW6swq0mvo=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
colorlog
pyyaml
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"lupupy"
];
meta = with lib; {
description = "Python module to control Lupusec alarm control panels";
mainProgram = "lupupy";
homepage = "https://github.com/majuss/lupupy";
changelog = "https://github.com/majuss/lupupy/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}