rawdog: use python2

This commit is contained in:
Frederik Rietdijk 2016-11-09 11:52:53 +01:00
parent f1fbf04162
commit fe24e93df8

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, pythonPackages }: { stdenv, fetchurl, python2Packages }:
pythonPackages.buildPythonApplication rec { python2Packages.buildPythonApplication rec {
name = "rawdog-${version}"; name = "rawdog-${version}";
version = "2.21"; version = "2.21";
@ -9,7 +9,7 @@ pythonPackages.buildPythonApplication rec {
sha256 = "0f5z7b70pyhjl6s28hgxninsr86s4dj5ycd50sv6bfz4hm1c2030"; sha256 = "0f5z7b70pyhjl6s28hgxninsr86s4dj5ycd50sv6bfz4hm1c2030";
}; };
propagatedBuildInputs = with pythonPackages; [ feedparser ]; propagatedBuildInputs = with python2Packages; [ feedparser ];
namePrefix = ""; namePrefix = "";