python310Packages.od: add pythonImportsCheck

This commit is contained in:
Fabian Affolter
2022-11-19 11:22:43 +01:00
committed by GitHub
parent 7ea97bf4af
commit 19ec9f1d5f
@@ -14,16 +14,21 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "sha256-uGkj2Z8mLg51IV+FOqwZl1hT7zVyjmD1CcY/VbH4tKk=";
hash = "sha256-uGkj2Z8mLg51IV+FOqwZl1hT7zVyjmD1CcY/VbH4tKk=";
};
checkInputs = [
repeated-test
];
pythonImportsCheck = [
"od"
];
meta = with lib; {
description = "Shorthand syntax for building OrderedDicts";
homepage = "https://github.com/epsy/od";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}