pythonPackages.turnt: init at 1.8.0

This commit is contained in:
Brian Leung 2022-08-16 02:41:02 -07:00
parent 945422ec1a
commit c379e08513
No known key found for this signature in database
GPG Key ID: 2D86D6A94C8BB3B1
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

@ -10938,6 +10938,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 { };