python39Packages.sqlobject: add missing meta.maintainers, switch to pytestCheckHook
This commit is contained in:
parent
ec7ec7db7d
commit
dcc9efa371
1 changed files with 4 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pytest
|
, pytestCheckHook
|
||||||
, FormEncode
|
, FormEncode
|
||||||
, pastedeploy
|
, pastedeploy
|
||||||
, paste
|
, paste
|
||||||
|
@ -17,13 +17,14 @@ buildPythonPackage rec {
|
||||||
sha256 = "45064184decf7f42d386704e5f47a70dee517d3e449b610506e174025f84d921";
|
sha256 = "45064184decf7f42d386704e5f47a70dee517d3e449b610506e174025f84d921";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
|
||||||
propagatedBuildInputs = [ FormEncode pastedeploy paste pydispatcher ];
|
propagatedBuildInputs = [ FormEncode pastedeploy paste pydispatcher ];
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Object Relational Manager for providing an object interface to your database";
|
description = "Object Relational Manager for providing an object interface to your database";
|
||||||
homepage = "http://www.sqlobject.org/";
|
homepage = "http://www.sqlobject.org/";
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue