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:
commit
af18197812
1 changed files with 8 additions and 3 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue