bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
47 lines
999 B
Nix
47 lines
999 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
flit-core,
|
|
py-cid,
|
|
pytestCheckHook,
|
|
pytest-cov,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-cid";
|
|
version = "1.1.2";
|
|
format = "pyproject";
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ntninja";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-dcL/i5+scmdXh7lfE8+32w9PdHWf+mkunJL1vpJ5+Co=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "pytest >= 5.0, < 7.0" "pytest >= 5.0"
|
|
'';
|
|
|
|
nativeBuildInputs = [ flit-core ];
|
|
|
|
propagatedBuildInputs = [ py-cid ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-cov
|
|
];
|
|
|
|
pythonImportsCheck = [ "pytest_cid" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ntninja/pytest-cid";
|
|
description = "Simple wrapper around py-cid for easily writing tests involving CIDs in datastructures";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ Luflosi ];
|
|
};
|
|
}
|