1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "editables";
9 version = "0.3";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "sha256-FnUk43c1jtHxN05hwmjw16S/fb0EbGVve0EM3hYWGxo=";
14 };
15
16 checkInputs = [
17 pytestCheckHook
18 ];
19
20 # Tests not included in archive.
21 doCheck = false;
22
23 pythonImportsCheck = [ "editables" ];
24
25 meta = with lib; {
26 description = "Editable installations";
27 maintainers = with maintainers; [ ];
28 homepage = "https://github.com/pfmoore/editables";
29 license = licenses.mit;
30 };
31}