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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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; [ ];
};
}