9 buildPythonPackage rec {
10 pname = "approval-utilities";
11 inherit (approvaltests) version src;
12 disabled = pythonOlder "3.7";
16 mv setup.approval_utilities.py setup.py
23 propagatedBuildInputs = [
24 # used in approval_utilities/utilities/time_utilities.py
28 pythonImportsCheck = [ "approval_utilities" ];
30 # upstream has no tests
34 description = "Utilities for your production code that work well with approvaltests";
35 homepage = "https://github.com/approvals/ApprovalTests.Python";
36 license = lib.licenses.asl20;
37 maintainers = with lib.maintainers; [ dotlambda ];