evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / datashaper / default.nix
blob3ad28d2228ed33431bbb4383a8e104af9f6b22df
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   poetry-core,
7   dacite,
8   diskcache,
9   jsonschema,
10   pandas,
11   pyarrow,
14 buildPythonPackage rec {
15   pname = "datashaper";
16   version = "0.0.49";
17   pyproject = true;
19   disabled = pythonOlder "3.10";
21   src = fetchPypi {
22     inherit pname version;
23     hash = "sha256-Bb+6WWRHSmK91SWew/oBc9AeNlIItqSv9OoOYwlqdTM=";
24   };
26   build-system = [ poetry-core ];
28   pythonRelaxDeps = [ "pyarrow" ];
30   dependencies = [
31     dacite
32     diskcache
33     jsonschema
34     pandas
35     pyarrow
36   ];
38   pythonImportsCheck = [ "datashaper" ];
40   # pypi tarball has no tests
41   doCheck = false;
43   meta = {
44     description = "Collection of utilities for doing lightweight data wrangling";
45     homepage = "https://github.com/microsoft/datashaper/tree/main/python/datashaper";
46     license = lib.licenses.mit;
47     maintainers = with lib.maintainers; [ natsukium ];
48   };