Merge pull request #186924 from leungbk/turnt

pythonPackages.turnt: init at 1.8.0
This commit is contained in:
Jonas Heinrich 2022-08-20 18:52:40 +02:00 committed by GitHub
commit 0b8a3d2f89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib, buildPythonPackage, fetchPypi, click, tomli }:
buildPythonPackage rec {
pname = "turnt";
version = "1.8.0";
format = "flit";
src = fetchPypi {
inherit pname version;
sha256 = "c6cfcb68a3353032c4ce6fff352196e723d05f9cee23eaf4f36d4dcfd89b8e49";
};
propagatedBuildInputs = [
click
tomli
];
doCheck = true;
checkPhase = ''
runHook preCheck
$out/bin/turnt test/*/*.t
runHook postCheck
'';
pythonImportsCheck = [ "turnt" ];
meta = with lib; {
description = "Snapshot testing tool";
homepage = "https://github.com/cucapra/turnt";
license = licenses.mit;
maintainers = with maintainers; [ leungbk ];
};
}

View file

@ -10999,6 +10999,8 @@ in {
inherit (pkgs.libsForQt5) wrapQtAppsHook;
};
turnt = callPackage ../development/python-modules/turnt { };
tuya-iot-py-sdk = callPackage ../development/python-modules/tuya-iot-py-sdk { };
tuyaha = callPackage ../development/python-modules/tuyaha { };