1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pythonAtLeast,
6}:
7
8buildPythonPackage rec {
9 pname = "assay";
10 version = "unstable-2022-01-19";
11 format = "setuptools";
12
13 src = fetchFromGitHub {
14 owner = "brandon-rhodes";
15 repo = pname;
16 rev = "bb62d1f7d51d798b05a88045fff3a2ff92c299c3";
17 hash = "sha256-FuAD74mFJ9F9AMgB3vPmODAlZKgPR7FQ4yn7HEBS5Rw=";
18 };
19
20 pythonImportsCheck = [ "assay" ];
21
22 meta = with lib; {
23 homepage = "https://github.com/brandon-rhodes/assay";
24 description = "Attempt to write a Python testing framework I can actually stand";
25 license = licenses.mit;
26 maintainers = with maintainers; [ zane ];
27 broken = pythonAtLeast "3.11";
28 };
29}