Skip to content

Commit 28bf12f

Browse files
authored
python312Packages.pydeps: 1.12.20 -> 2.0.1 (#349597)
2 parents 30cae82 + 6f82663 commit 28bf12f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pkgs/development/python-modules/pydeps/default.nix

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@
1313

1414
buildPythonPackage rec {
1515
pname = "pydeps";
16-
version = "1.12.20";
16+
version = "2.0.1";
1717
pyproject = true;
1818

19-
disabled = pythonOlder "3.7";
19+
disabled = pythonOlder "3.8";
2020

2121
src = fetchFromGitHub {
2222
owner = "thebjorn";
2323
repo = "pydeps";
2424
rev = "refs/tags/v${version}";
25-
hash = "sha256-d6EeeNem+HfuipKF5ZOI48c11j0ozGrBP4XlqTx+fJ4=";
25+
hash = "sha256-ZLFcaWzu8iYBnbSh1Ua4fvFyYD5q71R/iIqzRUKRn1E=";
2626
};
2727

28-
nativeBuildInputs = [ setuptools ];
28+
build-system = [ setuptools ];
2929

3030
buildInputs = [ graphviz ];
3131

32-
propagatedBuildInputs = [
32+
dependencies = [
3333
graphviz
3434
stdlib-list
3535
];
@@ -55,10 +55,10 @@ buildPythonPackage rec {
5555

5656
meta = with lib; {
5757
description = "Python module dependency visualization";
58-
mainProgram = "pydeps";
5958
homepage = "https://github.com/thebjorn/pydeps";
6059
changelog = "https://github.com/thebjorn/pydeps/releases/tag/v${version}";
6160
license = licenses.bsd2;
6261
maintainers = with maintainers; [ fab ];
62+
mainProgram = "pydeps";
6363
};
6464
}

0 commit comments

Comments
 (0)