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

python310Packages.datasette-publish-fly: 1.2 -> 1.3
This commit is contained in:
Fabian Affolter 2023-01-28 12:23:25 +01:00 committed by GitHub
commit 0c2899e14c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "datasette-publish-fly"; pname = "datasette-publish-fly";
version = "1.2"; version = "1.3";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -18,8 +18,8 @@ buildPythonPackage rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "simonw"; owner = "simonw";
repo = pname; repo = pname;
rev = version; rev = "refs/tags/${version}";
hash = "sha256-0frP/RkpZX6LCR8cOlzcBG3pbcOh0KPuELlYUXS3dRE="; hash = "sha256-L94QYcrTWjuoz0aEFTxPi8Xg0xERP1zCs7+vzhoJagc=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -39,6 +39,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Datasette plugin for publishing data using Fly"; description = "Datasette plugin for publishing data using Fly";
homepage = "https://datasette.io/plugins/datasette-publish-fly"; homepage = "https://datasette.io/plugins/datasette-publish-fly";
changelog = "https://github.com/simonw/datasette-publish-fly/releases/tag/${version}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };