blob: 1da7346f26693f108dc0d9c84f893d39268ed82f (
plain) (
blame)
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
49
50
51
52
|
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
pythonRelaxDepsHook,
poetry-core,
dacite,
diskcache,
jsonschema,
pandas,
pyarrow,
}:
buildPythonPackage rec {
pname = "datashaper";
version = "0.0.49";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-Bb+6WWRHSmK91SWew/oBc9AeNlIItqSv9OoOYwlqdTM=";
};
build-system = [ poetry-core ];
nativeBuildInputs = [ pythonRelaxDepsHook ];
pythonRelaxDeps = [ "pyarrow" ];
dependencies = [
dacite
diskcache
jsonschema
pandas
pyarrow
];
pythonImportsCheck = [ "datashaper" ];
# pypi tarball has no tests
doCheck = false;
meta = {
description = "Collection of utilities for doing lightweight data wrangling";
homepage = "https://github.com/microsoft/datashaper/tree/main/python/datashaper";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};
}
|