mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
python310Packages.aiosqlite: add changelog to meta
This commit is contained in:
parent
2cc918c113
commit
d9e229a3af
@ -14,7 +14,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-8OaswkvEhkFJJnrIL7Rt+zvkRV+Z/iHfgmCcxua67lE=";
|
hash = "sha256-8OaswkvEhkFJJnrIL7Rt+zvkRV+Z/iHfgmCcxua67lE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
@ -24,14 +24,19 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
# tests are not pick-up automatically by the hook
|
# tests are not pick-up automatically by the hook
|
||||||
pytestFlagsArray = [ "aiosqlite/tests/*.py" ];
|
pytestFlagsArray = [
|
||||||
|
"aiosqlite/tests/*.py"
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "aiosqlite" ];
|
pythonImportsCheck = [
|
||||||
|
"aiosqlite"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Asyncio bridge to the standard sqlite3 module";
|
description = "Asyncio bridge to the standard sqlite3 module";
|
||||||
homepage = "https://github.com/jreese/aiosqlite";
|
homepage = "https://github.com/jreese/aiosqlite";
|
||||||
|
changelog = "https://github.com/omnilib/aiosqlite/blob/v${version}/CHANGELOG.md";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.costrouc ];
|
maintainers = with maintainers; [ costrouc ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user