1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
43 lines
936 B
Nix
43 lines
936 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
filelock,
|
|
lxml,
|
|
pycryptodomex,
|
|
urllib3,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "blobfile";
|
|
version = "3.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "christopher-hesse";
|
|
repo = "blobfile";
|
|
tag = "v${version}";
|
|
hash = "sha256-/v48rLvlN4lsfWKJvXRNuIO6jdsCgRcSPlJzdOfl3xk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pycryptodomex
|
|
filelock
|
|
urllib3
|
|
lxml
|
|
];
|
|
|
|
# Tests require a running Docker instance
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "blobfile" ];
|
|
|
|
meta = {
|
|
description = "Read Google Cloud Storage, Azure Blobs, and local paths with the same interface";
|
|
homepage = "https://github.com/christopher-hesse/blobfile";
|
|
changelog = "https://github.com/christopher-hesse/blobfile/blob/v${version}/CHANGES.md";
|
|
license = lib.licenses.unlicense;
|
|
maintainers = with lib.maintainers; [ happysalada ];
|
|
};
|
|
}
|