tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.pefile: add changelog to meta
Fabian Affolter
3 years ago
76a47699
39af68a7
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pefile
default.nix
+2
-1
pkgs/development/python-modules/pefile/default.nix
···
16
16
src = fetchFromGitHub {
17
17
owner = "erocarrera";
18
18
repo = pname;
19
19
-
rev = "v${version}";
19
19
+
rev = "refs/tags/v${version}";
20
20
hash = "sha256-Cv20hJsErHFSuS5Q1kqLNp4DAsPXv/eFhaU9oYECSeI=";
21
21
};
22
22
···
38
38
meta = with lib; {
39
39
description = "Multi-platform Python module to parse and work with Portable Executable (aka PE) files";
40
40
homepage = "https://github.com/erocarrera/pefile";
41
41
+
changelog = "https://github.com/erocarrera/pefile/releases/tag/v${version}";
41
42
license = licenses.mit;
42
43
maintainers = with maintainers; [ pamplemousse ];
43
44
};