python311Packages.pydiscourse: update ordering

- minor formatting tweaks
This commit is contained in:
Fabian Affolter
2023-08-31 10:43:11 +02:00
committed by GitHub
parent 090ea50ba5
commit 42b7ffe561
@@ -13,10 +13,6 @@ buildPythonPackage rec {
disabled = pythonOlder "3.7";
nativeCheckInputs = [
unittestCheckHook
];
src = fetchFromGitHub {
owner = "pydiscourse";
repo = pname;
@@ -24,14 +20,22 @@ buildPythonPackage rec {
hash = "sha256-peDkXRcD/ieWYWXqv8hPxTSNRXBHcb/3sj/JJSF2RYg=";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [
requests
];
pythonImportsCheck = [ "pydiscourse" ];
nativeCheckInputs = [
unittestCheckHook
];
pythonImportsCheck = [
"pydiscourse"
];
meta = with lib; {
description = "A Python library for working with Discourse";
homepage = "https://github.com/pydiscourse/pydiscourse";
changelog = "https://github.com/pydiscourse/pydiscourse/releases/tag/v${version}";
description = "A Python library for working with Discourse";
license = licenses.mit;
maintainers = with maintainers; [ Dettorer ];
};