Unverified Commit 96e1c830 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

pyamlboot.tests: fix the eval (#352825)

parents 87e38038 1301e4f0
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  fetchFromGitHub,
  python3Packages,
  testers,
  pyamlboot,
}:

python3Packages.buildPythonApplication rec {
@@ -27,9 +28,9 @@ python3Packages.buildPythonApplication rec {
  ];

  passthru.tests.version = testers.testVersion {
    package = "pyamlboot";
    package = pyamlboot;
    command = "boot.py -v";
    version = "boot.py ${version}";
    version = "boot.py ${lib.versions.majorMinor version}";
  };

  meta = {