python3Packages.editables: 0.3 -> 0.5

This commit is contained in:
Martin Weinelt 2023-09-15 14:06:06 +02:00
parent e361bc2624
commit c99859ce69

View File

@ -1,18 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "editables";
version = "0.3";
version = "0.5";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-FnUk43c1jtHxN05hwmjw16S/fb0EbGVve0EM3hYWGxo=";
hash = "sha256-MJYn2bXErcDmaNjG+nusG6fIxdQVwtJ/YPCB+OgNHeI=";
};
nativeBuildInputs = [
flit-core
];
nativeCheckInputs = [
pytestCheckHook
];