Skip to content

Commit a90028c

Browse files
authored
python312Packages.praw: 7.7.1 -> 7.8.0 (#350166)
2 parents 9c7ff88 + 439625a commit a90028c

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

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

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
lib,
3-
betamax,
43
betamax-matchers,
54
betamax-serializers,
5+
betamax,
66
buildPythonPackage,
77
fetchFromGitHub,
8+
flit-core,
89
mock,
910
prawcore,
1011
pytestCheckHook,
@@ -16,19 +17,21 @@
1617

1718
buildPythonPackage rec {
1819
pname = "praw";
19-
version = "7.7.1";
20-
format = "setuptools";
20+
version = "7.8.0";
21+
pyproject = true;
2122

22-
disabled = pythonOlder "3.7";
23+
disabled = pythonOlder "3.8";
2324

2425
src = fetchFromGitHub {
2526
owner = "praw-dev";
26-
repo = pname;
27+
repo = "praw";
2728
rev = "refs/tags/v${version}";
28-
hash = "sha256-L7wTHD/ypXVc8GMfl9u16VNb9caLJoXpaMEIzaVVUgo=";
29+
hash = "sha256-oJkpFGJswG//5dnfdwkUdAkn8FOuqT/tDoTT5UncOGA=";
2930
};
3031

31-
propagatedBuildInputs = [
32+
build-system = [ flit-core ];
33+
34+
dependencies = [
3235
mock
3336
prawcore
3437
update-checker

0 commit comments

Comments
 (0)