1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

python312Packages.lmcloud: fix repo and version

This commit is contained in:
Robert Schütz 2024-09-04 11:37:49 -07:00
parent 0e97b96cfa
commit cbe5bb299b

View file

@ -12,15 +12,15 @@
buildPythonPackage rec {
pname = "lmcloud";
version = ".1.2.2";
version = "1.2.2";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "zweckj";
repo = "lmcloud";
rev = "refs/tags/v${version}";
repo = "pylamarzocco";
rev = "refs/tags/v.${version}";
hash = "sha256-uYd52T9dAvFP6in1fHiCXFVUdbRXDE7crjfelbasW4Q=";
};
@ -40,8 +40,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library to interface with La Marzocco's cloud";
homepage = "https://github.com/zweckj/lmcloud";
changelog = "https://github.com/zweckj/lmcloud/releases/tag/v${version}";
homepage = "https://github.com/zweckj/pylamarzocco";
changelog = "https://github.com/zweckj/pylamarzocco/releases/tag/v.${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};