tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.app-model: 0.3.1 -> 0.4.0
R. Ryantm
7 months ago
541afad2
5de2d661
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
app-model
default.nix
+3
-3
pkgs/development/python-modules/app-model/default.nix
···
15
16
buildPythonPackage rec {
17
pname = "app-model";
18
-
version = "0.3.1";
19
pyproject = true;
20
21
disabled = pythonOlder "3.9";
···
24
owner = "pyapp-kit";
25
repo = "app-model";
26
tag = "v${version}";
27
-
hash = "sha256-bIqcbKjAj5TMZD9mZ+7G4q+sR0aRqn6E4hf99srgRIE=";
28
};
29
30
build-system = [
···
47
meta = with lib; {
48
description = "Module to implement generic application schema";
49
homepage = "https://github.com/pyapp-kit/app-model";
50
-
changelog = "https://github.com/pyapp-kit/app-model/blob/v${version}/CHANGELOG.md";
51
license = licenses.bsd3;
52
maintainers = with maintainers; [ fab ];
53
};
···
15
16
buildPythonPackage rec {
17
pname = "app-model";
18
+
version = "0.4.0";
19
pyproject = true;
20
21
disabled = pythonOlder "3.9";
···
24
owner = "pyapp-kit";
25
repo = "app-model";
26
tag = "v${version}";
27
+
hash = "sha256-T7aUwdne1rUzhVRotlxDvEBm3mi/frUQziZdLo53Lsg=";
28
};
29
30
build-system = [
···
47
meta = with lib; {
48
description = "Module to implement generic application schema";
49
homepage = "https://github.com/pyapp-kit/app-model";
50
+
changelog = "https://github.com/pyapp-kit/app-model/blob/${src.tag}/CHANGELOG.md";
51
license = licenses.bsd3;
52
maintainers = with maintainers; [ fab ];
53
};