about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fsspec/default.nix
blob: 1be03cd0d2a1e95b70094cf9bdaa05d6ea7b1c2e (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
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:

buildPythonPackage rec {
  pname = "fsspec";
  version = "0.6.2";

  disabled = pythonOlder "3.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ffd7cd5ac32f36698097c3d78c2c433d4c12f7e4bce3a3a4036fd3491188046d";
  };

  # no tests
  doCheck = false;

  meta = with lib; {
    description = "A specification that python filesystems should adhere to.";
    homepage = "https://github.com/intake/filesystem_spec";
    license = licenses.bsd3;
  };
}