Merge pull request #277431 from dotlambda/ndms2-client-0.1.3

python311Packages.ndms2-client: 0.1.2 -> 0.1.3
This commit is contained in:
Nick Cao 2023-12-29 11:07:41 -05:00 committed by GitHub
commit af18197812
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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