depot/third_party/nixpkgs/pkgs/development/python-modules/opencontainers/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
801 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
requests,
}:
buildPythonPackage rec {
pname = "opencontainers";
version = "0.0.14";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-/eO4CZtWtclWQV34kz4iJ+GRToBaJ3uETy+eUjQXOPI=";
};
postPatch = ''
sed -i "/pytest-runner/d" setup.py
'';
passthru.optional-dependencies.reggie = [ requests ];
pythonImportsCheck = [ "opencontainers" ];
nativeCheckInputs = [ pytestCheckHook ] ++ passthru.optional-dependencies.reggie;
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Python module for oci specifications";
homepage = "https://github.com/vsoch/oci-python";
license = licenses.mpl20;
maintainers = with maintainers; [ ];
};
}