nixpkgs/pkgs/development/python-modules/aladdin-connect/default.nix
Fabian Affolter a03500a2e0 python310Packages.aladdin-connect: add changelog to meta
- disable on unsupported Python releases
2023-01-28 10:27:02 +01:00

41 lines
872 B
Nix

{ lib
, requests
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "aladdin-connect";
version = "0.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "shoejosh";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-kLvMpSGa5WyDOH3ejAJyFGsB9IiMXp+nvVxM/ZkxyFw=";
};
propagatedBuildInputs = [
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"aladdin_connect"
];
meta = with lib; {
description = "Python library for interacting with Genie Aladdin Connect devices";
homepage = "https://github.com/shoejosh/aladdin-connect";
changelog = "https://github.com/shoejosh/aladdin-connect/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}