summary refs log tree commit diff
path: root/pkgs/development/python-modules/editables/default.nix
blob: 9a3bac5abda593866e64ddd71a04b939b0abe394 (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
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "editables";
  version = "0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6918f16225258f24ef9800c2327e14eded42ddac344e77982380749464024f35";
  };

  checkInputs = [
    pytestCheckHook
  ];

  # Tests not included in archive.
  doCheck = false;

  meta = {
    description = "Editable installations";
    homepage = https://github.com/pfmoore/editables;
    license = lib.licenses.mit;
  };
}