python311Packages.ndms2-client: 0.1.2 -> 0.1.3

Diff: https://github.com/foxel/python_ndms2_client/compare/0.1.2...0.1.3
This commit is contained in:
Robert Schütz 2023-12-28 14:45:37 -08:00
parent 4877d206e5
commit 2991cb6b03

View file

@ -1,22 +1,27 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ndms2-client";
version = "0.1.2";
version = "0.1.3";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "foxel";
repo = "python_ndms2_client";
rev = version;
hash = "sha256-cM36xNLymg5Xph3bvbUGdAEmMABJ9y3/w/U8re6ZfB4=";
hash = "sha256-A19olC1rTHTy0xyeSP45fqvv9GUynQSrMgXBgW8ySOs=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];