1{ buildPythonPackage, fetchPypi, lib, pytest }:
2
3buildPythonPackage rec {
4 pname = "pytest-pythonpath";
5 version = "0.7.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0qhxh0z2b3p52v3i0za9mrmjnb1nlvvyi2g23rf88b3xrrm59z33";
10 };
11
12 buildInputs = [ pytest ];
13 checkInputs = [ pytest ];
14
15 checkPhase = ''
16 pytest
17 '';
18
19 meta = with lib; {
20 description =
21 "Pytest plugin for adding to the PYTHONPATH from command line or configs";
22 homepage = "https://github.com/bigsassy/pytest-pythonpath";
23 maintainers = with maintainers; [ cript0nauta ];
24 license = licenses.mit;
25 };
26}