Unverified Commit 6832d8eb authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python3Packages.millheater: 0.12.2 -> 012.2

parent a846fc2d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

buildPythonPackage rec {
  pname = "millheater";
  version = "0.12.2";
  version = "012.2";
  pyproject = true;

  disabled = pythonOlder "3.10";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "Danielhiversen";
    repo = "pymill";
    tag = "012.2"; # https://github.com/Danielhiversen/pymill/issues/87
    tag = version; # https://github.com/Danielhiversen/pymill/issues/87
    hash = "sha256-tR6MZIgCazGcXRIaSXyDYIEp+kD6xyrpOXORbi8LV7E=";
  };

@@ -37,7 +37,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python library for Mill heater devices";
    homepage = "https://github.com/Danielhiversen/pymill";
    changelog = "https://github.com/Danielhiversen/pymill/releases/tag/${version}";
    changelog = "https://github.com/Danielhiversen/pymill/releases/tag/${src.tag}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };