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

54 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
jsonschema,
poetry-core,
pymacaroons,
pytest-mock,
pytestCheckHook,
pythonOlder,
typing-extensions,
}:
buildPythonPackage rec {
pname = "pypitoken";
version = "7.0.1";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ewjoachim";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-1SUR6reZywgFpSdD49E5PjEDNrlvsHH4TK6SkXStUws=";
};
postPatch = ''
sed -i "/--cov/d" setup.cfg
'';
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
pymacaroons
jsonschema
typing-extensions
];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
];
pythonImportsCheck = [ "pypitoken" ];
meta = with lib; {
description = "Library for generating and manipulating PyPI tokens";
homepage = "https://pypitoken.readthedocs.io/";
changelog = "https://github.com/ewjoachim/pypitoken/releases/tag/6.0.3${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}