Unverified Commit 19ec9f1d authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.od: add pythonImportsCheck

parent 7ea97bf4
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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; [ ];
  };
}