tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.praw: 2.1.21 -> 3.1.0
Jascha Geerds
10 years ago
c17cc5a5
05a653ba
+13
-5
1 changed file
expand all
collapse all
unified
split
pkgs
top-level
python-packages.nix
+13
-5
pkgs/top-level/python-packages.nix
···
9594
9595
9596
9597
-
praw = pythonPackages.buildPythonPackage rec {
9598
-
name = "praw-2.1.21";
9599
9600
src = pkgs.fetchurl {
9601
-
url = "https://pypi.python.org/packages/source/p/praw/praw-2.1.21.tar.gz";
9602
-
md5 = "3b0388c9105662f8be8f1a4d3a38216d";
9603
};
9604
9605
-
propagatedBuildInputs = with pythonPackages; [ update_checker six mock flake8 ];
0
0
0
0
0
0
9606
9607
# can't find the tests module?
9608
doCheck = false;
···
9611
description = "Python Reddit API wrapper";
9612
homepage = http://praw.readthedocs.org/;
9613
license = licenses.gpl3;
0
0
9614
};
9615
};
9616
···
9594
9595
9596
9597
+
praw = buildPythonPackage rec {
9598
+
name = "praw-3.1.0";
9599
9600
src = pkgs.fetchurl {
9601
+
url = "https://pypi.python.org/packages/source/p/praw/${name}.zip";
9602
+
sha256 = "1dilb3vr5llqy344i6nh7gl07wcssb5dmqrhjwhfqi1mais7b953";
9603
};
9604
9605
+
propagatedBuildInputs = with self; [
9606
+
decorator
9607
+
flake8
9608
+
mock
9609
+
six
9610
+
update_checker
9611
+
];
9612
9613
# can't find the tests module?
9614
doCheck = false;
···
9617
description = "Python Reddit API wrapper";
9618
homepage = http://praw.readthedocs.org/;
9619
license = licenses.gpl3;
9620
+
platforms = platforms.all;
9621
+
maintainers = with maintainers; [ jgeerds ];
9622
};
9623
};
9624