biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / blobfile / default.nix
blob9208381cc9e4e2940e3ceb08e8bb7152197ea4b4
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   filelock,
6   lxml,
7   pycryptodomex,
8   pythonOlder,
9   urllib3,
12 buildPythonPackage rec {
13   pname = "blobfile";
14   version = "3.0.0";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "christopher-hesse";
21     repo = pname;
22     rev = "refs/tags/v${version}";
23     hash = "sha256-/v48rLvlN4lsfWKJvXRNuIO6jdsCgRcSPlJzdOfl3xk=";
24   };
26   propagatedBuildInputs = [
27     pycryptodomex
28     filelock
29     urllib3
30     lxml
31   ];
33   # Tests require a running Docker instance
34   doCheck = false;
36   pythonImportsCheck = [ "blobfile" ];
38   meta = with lib; {
39     description = "Read Google Cloud Storage, Azure Blobs, and local paths with the same interface";
40     homepage = "https://github.com/christopher-hesse/blobfile";
41     changelog = "https://github.com/christopher-hesse/blobfile/blob/v${version}/CHANGES.md";
42     license = licenses.unlicense;
43     maintainers = with maintainers; [ happysalada ];
44   };