python311Packages.remotezip: 0.12.2 -> 0.12.3

Diff: 3723724d6d...v0.12.3
This commit is contained in:
Nick Cao 2024-02-28 12:49:48 -05:00
parent 7685ed9b97
commit 7e18666f60
No known key found for this signature in database

View File

@ -1,36 +1,35 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, requests
, tabulate
, pytestCheckHook
, requests-mock
}:
buildPythonPackage {
buildPythonPackage rec {
pname = "remotezip";
version = "0.12.2";
format = "setuptools";
version = "0.12.3";
pyproject = true;
src = fetchFromGitHub {
owner = "gtsystem";
repo = "python-remotezip";
# upstream does not tag releases, determined with git blame
# pypi archive lacks files for tests
rev = "3723724d6d877d3166d52f4528ffa7bd5bf6627f";
hash = "sha256-iYxHW8RdLFrpjkcEvpfF/NWBnw7Dd5cx2ghpof2XFn4=";
rev = "refs/tags/v${version}";
hash = "sha256-TNEM7Dm4iH4Z/P/PAqjJppbn1CKmyi9Xpq/sU9O8uxg=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
requests
tabulate
];
nativeCheckInputs = [
pytestCheckHook
];
checkInputs = [
requests-mock
];