1{ lib, buildPythonPackage, fetchPypi
2, mock, pytest
3, six
4}:
5buildPythonPackage rec {
6 pname = "PyHamcrest";
7 version = "2.0.2";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "412e00137858f04bde0729913874a48485665f2d36fe9ee449f26be864af9316";
12 };
13
14 checkInputs = [ mock pytest ];
15 propagatedBuildInputs = [ six ];
16
17 doCheck = false; # pypi tarball does not include tests
18
19 meta = with lib; {
20 homepage = "https://github.com/hamcrest/PyHamcrest";
21 description = "Hamcrest framework for matcher objects";
22 license = licenses.bsd3;
23 maintainers = with maintainers; [
24 alunduil
25 ];
26 };
27}