blob: dedae58d34a2e21265b1a5e36fd89e0d5834372f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
lib,
gitMinimal,
more-itertools,
psutil,
pytestCheckHook,
unzip,
}:
buildPythonPackage rec {
pname = "datasalad";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "datalad";
repo = "datasalad";
tag = "v${version}";
hash = "sha256-w00QY6oz0FgfgdY3f+mVRRnsOT0WJZV64ymgsXAINac=";
};
build-system = [
hatchling
hatch-vcs
];
nativeCheckInputs = [
gitMinimal
pytestCheckHook
more-itertools
psutil
unzip
];
pythonImportsCheck = [ "datasalad" ];
meta = {
description = "Pure-Python library with a collection of utilities for working with Git and git-annex";
changelog = "https://github.com/datalad/datasalad/blob/main/CHANGELOG.md";
homepage = "https://github.com/datalad/datasalad";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gador ];
};
}
|