10 buildPythonPackage rec {
11 pname = "bucketstore";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "jpetrucciani";
20 rev = "refs/tags/${version}";
21 hash = "sha256-BtoyGqFbeBhGQeXnmeSfiuJLZtXFrK26WO0SDlAtKG4=";
25 substituteInPlace setup.py \
26 --replace "version=__version__," 'version="${version}",'
29 propagatedBuildInputs = [
38 pythonImportsCheck = [
43 description = "Library for interacting with Amazon S3";
44 homepage = "https://github.com/jpetrucciani/bucketstore";
45 changelog = "https://github.com/jpetrucciani/bucketstore/releases/tag/${version}";
46 license = licenses.mit;
47 maintainers = with maintainers; [ jpetrucciani ];