summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/assay/default.nix
blob: 468e3254a451965dc7fd5db6ebfb59b767fb22a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonAtLeast,
}:

buildPythonPackage {
  pname = "assay";
  version = "0-unstable-2024-05-09";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "brandon-rhodes";
    repo = "assay";
    rev = "74617d70e77afa09f58b3169cf496679ac5d5621";
    hash = "sha256-zYpLtcXZ16EJWKSCqxFkSz/G9PwIZEQGBrYiJKuqnc4=";
  };

  pythonImportsCheck = [ "assay" ];

  meta = {
    homepage = "https://github.com/brandon-rhodes/assay";
    description = "Attempt to write a Python testing framework I can actually stand";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ zane ];
  };
}