1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pythonAtLeast,
6}:
7
8buildPythonPackage {
9 pname = "assay";
10 version = "0-unstable-2024-05-09";
11 format = "setuptools";
12
13 src = fetchFromGitHub {
14 owner = "brandon-rhodes";
15 repo = "assay";
16 rev = "74617d70e77afa09f58b3169cf496679ac5d5621";
17 hash = "sha256-zYpLtcXZ16EJWKSCqxFkSz/G9PwIZEQGBrYiJKuqnc4=";
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 };
28}