Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / editables / default.nix
blobf3db3a96d26fd02bc1fa9dd243ddeb49989e714f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , flit-core
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "editables";
10   version = "0.5";
11   format = "pyproject";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-MJYn2bXErcDmaNjG+nusG6fIxdQVwtJ/YPCB+OgNHeI=";
16   };
18   nativeBuildInputs = [
19     flit-core
20   ];
22   nativeCheckInputs = [
23     pytestCheckHook
24   ];
26   # Tests not included in archive.
27   doCheck = false;
29   pythonImportsCheck = [ "editables" ];
31   meta = with lib; {
32     description = "Editable installations";
33     maintainers = with maintainers; [ ];
34     homepage = "https://github.com/pfmoore/editables";
35     license = licenses.mit;
36   };