depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-subtesthack/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

22 lines
552 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "pytest-subtesthack";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-67UEIDycAf3TedKvp0dofct7HtG+H8DD9Tmy3oEnYgA=";
};
buildInputs = [ pytest ];
# no upstream test
doCheck = false;
meta = with lib; {
description = "Terrible plugin to set up and tear down fixtures within the test function itself";
homepage = "https://github.com/untitaker/pytest-subtesthack";
license = licenses.publicDomain;
};
}