mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
pythonPackages.datasette-template-sql: init at 1.0.2 (#129072)
* pythonPackages.datasette-template-sql: init at 1.0.2 * Address review feedback. * Apply suggestions from code review And fix the build. Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
002cf7d42d
commit
73ff5250ea
2 changed files with 35 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
|||
{ buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, datasette
|
||||
, pytestCheckHook
|
||||
, pytest-asyncio
|
||||
, sqlite-utils
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "datasette-template-sql";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "simonw";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1ag5f62y445jscxnklcfd84pjinkknmrpk1kmm2j121p7484hrsn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ datasette ];
|
||||
|
||||
checkInputs = [ pytestCheckHook pytest-asyncio sqlite-utils ];
|
||||
|
||||
pythonImportsCheck = [ "datasette_template_sql" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Datasette plugin for executing SQL queries from templates";
|
||||
homepage = "https://datasette.io/plugins/datasette-template-sql";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.MostAwesomeDude ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue