tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.lion-pytorch: 0.2.2 -> 0.2.3
R. Ryantm
1 year ago
37a6d917
52a26138
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
lion-pytorch
default.nix
+3
-3
pkgs/development/python-modules/lion-pytorch/default.nix
reviewed
···
8
8
9
9
buildPythonPackage rec {
10
10
pname = "lion-pytorch";
11
11
-
version = "0.2.2";
11
11
+
version = "0.2.3";
12
12
format = "setuptools";
13
13
disabled = pythonOlder "3.6";
14
14
15
15
src = fetchFromGitHub {
16
16
owner = "lucidrains";
17
17
repo = "lion-pytorch";
18
18
-
rev = "refs/tags/${version}";
19
19
-
hash = "sha256-hOPTuXdTrTi/Thv3/5IYqkgH+5cFdzyK1Fshus8u5n0=";
18
18
+
tag = version;
19
19
+
hash = "sha256-RHixPIZ1kCawWQiqYqLY+c3r6Rg86LKm3tQTyW2BNFU=";
20
20
};
21
21
22
22
propagatedBuildInputs = [ torch ];