depot/third_party/nixpkgs/pkgs/development/python-modules/editables/default.nix
Default email 5cae67db9e Project import generated by Copybara.
GitOrigin-RevId: b59c06dc92f8d03660eb4155754d93a6c34cda83
2021-07-17 23:14:59 +02:00

28 lines
509 B
Nix

{ 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;
};
}