Commit 5ee9d70e authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.atc-ble: add changelog to meta

parent 8377d07b
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -19,10 +19,15 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "Bluetooth-Devices";
    repo = pname;
    rev = "v${version}";
    rev = "refs/tags/v${version}";
    hash = "sha256-rwOFKxUlbbNIDJRdCmZpHstXwxcTnvlExgcVDdGbIVY=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace " --cov=atc_ble --cov-report=term-missing:skip-covered" ""
  '';

  nativeBuildInputs = [
    poetry-core
  ];
@@ -37,11 +42,6 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace " --cov=atc_ble --cov-report=term-missing:skip-covered" ""
  '';

  pythonImportsCheck = [
    "atc_ble"
  ];
@@ -49,6 +49,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Library for ATC devices with custom firmware";
    homepage = "https://github.com/Bluetooth-Devices/atc-ble";
    changelog = "https://github.com/Bluetooth-Devices/atc-ble/releases/tag/v${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };