summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-expect/default.nix
blob: 557446b5adcc8387121f93cee39007a69bedba83 (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
{ buildPythonPackage
, lib
, fetchPypi
, pytest
, u-msgpack-python
, six
}:

buildPythonPackage rec {
  pname = "pytest-expect";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "36b4462704450798197d090809a05f4e13649d9cba9acdc557ce9517da1fd847";
  };

  buildInputs = [ pytest ];
  propagatedBuildInputs = [ u-msgpack-python six ];

  # Tests in neither the archive nor the repo
  doCheck = false;

  meta = {
    description = "py.test plugin to store test expectations and mark tests based on them";
    homepage = https://github.com/gsnedders/pytest-expect;
    license = lib.licenses.mit;
  };
}