summary refs log tree commit diff
path: root/pkgs/development/python-modules/assay/default.nix
blob: 37c4ccc9392f87512df00b38bc32bda234eed7a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchFromGitHub }:

buildPythonPackage rec {
  pname = "assay";
  version = "unstable-2022-01-19";

  src = fetchFromGitHub {
    owner = "brandon-rhodes";
    repo = pname;
    rev = "bb62d1f7d51d798b05a88045fff3a2ff92c299c3";
    hash = "sha256-FuAD74mFJ9F9AMgB3vPmODAlZKgPR7FQ4yn7HEBS5Rw=";
  };

  pythonImportsCheck = [ "assay" ];

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