python3Packages.pydal: add format

This commit is contained in:
Fabian Affolter 2022-01-20 09:13:16 +01:00 committed by GitHub
parent c0ebf3ae09
commit 1b259474b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,13 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchPypi
, python
, lib
}:
buildPythonPackage rec {
pname = "pydal";
version = "20220114.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
@ -33,10 +34,10 @@ buildPythonPackage rec {
runHook postCheck
'';
meta = {
description = "A pure Python Database Abstraction Layer";
meta = with lib; {
description = "Python Database Abstraction Layer";
homepage = "https://github.com/web2py/pydal";
license = with lib.licenses; [ bsd3 ] ;
maintainers = with lib.maintainers; [ wamserma ];
license = with licenses; [ bsd3 ] ;
maintainers = with maintainers; [ wamserma ];
};
}