pythonPackages.praw: 2.1.21 -> 3.1.0

+13 -5
+13 -5
pkgs/top-level/python-packages.nix
··· 9594 9594 9595 9595 9596 9596 9597 - praw = pythonPackages.buildPythonPackage rec { 9598 - name = "praw-2.1.21"; 9597 + praw = buildPythonPackage rec { 9598 + name = "praw-3.1.0"; 9599 9599 9600 9600 src = pkgs.fetchurl { 9601 - url = "https://pypi.python.org/packages/source/p/praw/praw-2.1.21.tar.gz"; 9602 - md5 = "3b0388c9105662f8be8f1a4d3a38216d"; 9601 + url = "https://pypi.python.org/packages/source/p/praw/${name}.zip"; 9602 + sha256 = "1dilb3vr5llqy344i6nh7gl07wcssb5dmqrhjwhfqi1mais7b953"; 9603 9603 }; 9604 9604 9605 - propagatedBuildInputs = with pythonPackages; [ update_checker six mock flake8 ]; 9605 + propagatedBuildInputs = with self; [ 9606 + decorator 9607 + flake8 9608 + mock 9609 + six 9610 + update_checker 9611 + ]; 9606 9612 9607 9613 # can't find the tests module? 9608 9614 doCheck = false; ··· 9611 9617 description = "Python Reddit API wrapper"; 9612 9618 homepage = http://praw.readthedocs.org/; 9613 9619 license = licenses.gpl3; 9620 + platforms = platforms.all; 9621 + maintainers = with maintainers; [ jgeerds ]; 9614 9622 }; 9615 9623 }; 9616 9624