tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lastversion: 3.5.0 -> 3.5.7
R. Ryantm
10 months ago
58cbaece
398f7eb6
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
lastversion
default.nix
+4
-4
pkgs/development/python-modules/lastversion/default.nix
···
23
24
buildPythonPackage rec {
25
pname = "lastversion";
26
-
version = "3.5.0";
27
pyproject = true;
28
29
disabled = pythonOlder "3.6";
···
31
src = fetchFromGitHub {
32
owner = "dvershinin";
33
repo = "lastversion";
34
-
rev = "v${version}";
35
-
hash = "sha256-SeDLpMP8cF6CC3qJ6V8dLErl6ihpnl4lHeBkp7jtQgI=";
36
};
37
38
build-system = [ setuptools ];
···
78
meta = {
79
description = "Find the latest release version of an arbitrary project";
80
homepage = "https://github.com/dvershinin/lastversion";
81
-
changelog = "https://github.com/dvershinin/lastversion/blob/${src.rev}/CHANGELOG.md";
82
license = lib.licenses.bsd2;
83
maintainers = with lib.maintainers; [ ShamrockLee ];
84
mainProgram = "lastversion";
···
23
24
buildPythonPackage rec {
25
pname = "lastversion";
26
+
version = "3.5.7";
27
pyproject = true;
28
29
disabled = pythonOlder "3.6";
···
31
src = fetchFromGitHub {
32
owner = "dvershinin";
33
repo = "lastversion";
34
+
tag = "v${version}";
35
+
hash = "sha256-z3QrtnhIgXLVyaDNm0XqaVqZb05K3pq8mbweTpphdBQ=";
36
};
37
38
build-system = [ setuptools ];
···
78
meta = {
79
description = "Find the latest release version of an arbitrary project";
80
homepage = "https://github.com/dvershinin/lastversion";
81
+
changelog = "https://github.com/dvershinin/lastversion/blob/${src.tag}/CHANGELOG.md";
82
license = lib.licenses.bsd2;
83
maintainers = with lib.maintainers; [ ShamrockLee ];
84
mainProgram = "lastversion";