biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / tesh / default.nix
blobd4d2c1e0ed7146709b9e079f61731ff2c7558b10
1 { python3Packages, fetchFromGitHub }:
3 let
4   version = "0.3.2";
5 in python3Packages.buildPythonPackage rec {
6   pname = "tesh";
7   inherit version;
9   format = "pyproject";
11   src = fetchFromGitHub {
12     owner = "OceanSprint";
13     repo = "tesh";
14     rev = version;
15     hash = "sha256-GIwg7Cv7tkLu81dmKT65c34eeVnRR5MIYfNwTE7j2Vs=";
16   };
18   checkInputs = [ python3Packages.pytest ];
19   nativeBuildInputs = [ python3Packages.poetry-core ];
20   propagatedBuildInputs = with python3Packages; [ click pexpect ];