blob: 2694162b47b107f61d7a90dcf804462fbb5b15b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
pkgs: attrs: with pkgs; with attrs; rec {
version = "3.12.6";
src = fetchFromGitHub {
owner = "python";
repo = "cpython";
rev = "v${version}";
hash = "sha256-RxhBi+QDVZeKwN5uYJDkci2Gay/JELTK3K6xM8U8yo8=";
};
patches = [];
postPatch = "";
}
|