Skip to content

Commit b1c823e

Browse files
committed
python312Packages.aiounittest: refactor
1 parent c4abc9c commit b1c823e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pkgs/development/python-modules/aiounittest/default.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,21 @@ buildPythonPackage rec {
1414

1515
src = fetchFromGitHub {
1616
owner = "kwarunek";
17-
repo = pname;
17+
repo = "aiounittest";
1818
tag = version;
1919
hash = "sha256-hcfcB2SMduTopqdRdMi63UTTD7BWc5g2opAfahWXjlw=";
2020
};
2121

22-
nativeBuildInputs = [ setuptools ];
22+
build-system = [ setuptools ];
2323

24-
propagatedBuildInputs = [ wrapt ];
24+
dependencies = [ wrapt ];
2525

2626
nativeCheckInputs = [ pytestCheckHook ];
2727

2828
pythonImportsCheck = [ "aiounittest" ];
2929

3030
meta = with lib; {
31+
changelog = "https://github.com/kwarunek/aiounittest/releases/tag/${src.tag}";
3132
description = "Test asyncio code more easily";
3233
homepage = "https://github.com/kwarunek/aiounittest";
3334
license = licenses.mit;

0 commit comments

Comments
 (0)