Unverified Commit 0c2899e1 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #213121 from fabaff/datasette-publish-fly-bump

python310Packages.datasette-publish-fly: 1.2 -> 1.3 
parents 13ec80e0 f807df0c
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

buildPythonPackage rec {
  pname = "datasette-publish-fly";
  version = "1.2";
  version = "1.3";
  format = "setuptools";

  disabled = pythonOlder "3.7";
@@ -18,8 +18,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "simonw";
    repo = pname;
    rev = version;
    hash = "sha256-0frP/RkpZX6LCR8cOlzcBG3pbcOh0KPuELlYUXS3dRE=";
    rev = "refs/tags/${version}";
    hash = "sha256-L94QYcrTWjuoz0aEFTxPi8Xg0xERP1zCs7+vzhoJagc=";
  };

  propagatedBuildInputs = [
@@ -39,6 +39,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Datasette plugin for publishing data using Fly";
    homepage = "https://datasette.io/plugins/datasette-publish-fly";
    changelog = "https://github.com/simonw/datasette-publish-fly/releases/tag/${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };