1 { lib, buildPythonPackage, fetchFromGitHub, pythonAtLeast }:
3 buildPythonPackage rec {
5 version = "unstable-2022-01-19";
8 src = fetchFromGitHub {
9 owner = "brandon-rhodes";
11 rev = "bb62d1f7d51d798b05a88045fff3a2ff92c299c3";
12 hash = "sha256-FuAD74mFJ9F9AMgB3vPmODAlZKgPR7FQ4yn7HEBS5Rw=";
15 pythonImportsCheck = [ "assay" ];
18 homepage = "https://github.com/brandon-rhodes/assay";
19 description = "Attempt to write a Python testing framework I can actually stand";
20 license = licenses.mit;
21 maintainers = with maintainers; [ zane ];
22 broken = pythonAtLeast "3.11";