Merge pull request #261564 from natsukium/python311Packages-augmax-update

python311Packages.augmax: unstable-2022-02-19 -> 0.3.1
This commit is contained in:
Samuel Ainsworth 2023-10-18 17:14:32 -04:00 committed by GitHub
commit 1f5f1be081
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,21 +4,28 @@
, jax , jax
, jaxlib , jaxlib
, lib , lib
, pythonOlder
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "augmax"; pname = "augmax";
version = "unstable-2022-02-19"; version = "0.3.1";
format = "setuptools"; pyproject = true;
disbaled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "khdlr"; owner = "khdlr";
repo = pname; repo = "augmax";
# augmax does not have releases tagged. See https://github.com/khdlr/augmax/issues/5. rev = "refs/tags/v${version}";
rev = "3e5d85d6921a1e519987d33f226bc13f61e04d04"; hash = "sha256-hDNNoE7KVaH3jrXZA4A8f0UoQJPl6KHA3XwMc3Ccohk=";
sha256 = "046n43v7161w7najzlbi0443q60436xv24nh1mv23yw6psqqhx5i";
}; };
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ einops jax ]; propagatedBuildInputs = [ einops jax ];
# augmax does not have any tests at the time of writing (2022-02-19), but # augmax does not have any tests at the time of writing (2022-02-19), but
@ -30,6 +37,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Efficiently Composable Data Augmentation on the GPU with Jax"; description = "Efficiently Composable Data Augmentation on the GPU with Jax";
homepage = "https://github.com/khdlr/augmax"; homepage = "https://github.com/khdlr/augmax";
changelog = "https://github.com/khdlr/augmax/blob/${src.rev}/CHANGELOG.md";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ samuela ]; maintainers = with maintainers; [ samuela ];
}; };