summary refs log tree commit diff
path: root/pkgs/development/python-modules/expecttest/default.nix
blob: db64b386f2415e9f0773039ce3d9e7751e1f14d9 (plain) (blame)
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
29
30
31
32
33
34
{ buildPythonPackage
, fetchFromGitHub
, hypothesis
, lib
, poetry
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "expecttest";
  version = "0.1.3";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "ezyang";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-5CnpVFSbf3FcAa06Y7atG8sxu8uevpfrliB2HuVcrx0=";
  };

  buildInputs = [ poetry ];

  checkInputs = [ hypothesis pytestCheckHook ];

  pythonImportsCheck = [ "expecttest" ];

  meta = {
    maintainers = [ lib.maintainers.SomeoneSerge ];
    license = lib.licenses.mit;
    description = ''EZ Yang "golden" tests (testing against a reference implementation)'';
    homepage = "https://github.com/ezyang/expecttest";
    platforms = lib.platforms.unix;
  };
}