mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
Merge pull request #213128 from fabaff/aladdin-connect-bump
python310Packages.aladdin-connect: add changelog to meta
This commit is contained in:
commit
37aa550b2b
@ -2,17 +2,21 @@
|
||||
, 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 = version;
|
||||
sha256 = "sha256-kLvMpSGa5WyDOH3ejAJyFGsB9IiMXp+nvVxM/ZkxyFw=";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-kLvMpSGa5WyDOH3ejAJyFGsB9IiMXp+nvVxM/ZkxyFw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@ -22,11 +26,14 @@ buildPythonPackage rec {
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "aladdin_connect" ];
|
||||
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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user