Mnemosyne: provide capacity to override dependencies at the fidelity of a Python package.

This commit is contained in:
vi 2014-03-26 00:37:05 +08:00
parent ed63dcb7c7
commit b5acc84ff3
2 changed files with 11 additions and 3 deletions

View file

@ -1,7 +1,13 @@
{stdenv, fetchurl, pkgs}:
{ stdenv
, fetchurl
, buildPythonPackage
, pyqt4
, matplotlib
, cherrypy
, sqlite3
}:
let
version = "2.2.1";
inherit (pkgs.pythonPackages) buildPythonPackage pyqt4 matplotlib cherrypy sqlite3;
in buildPythonPackage rec {
name = "mnemosyne-${version}";
src = fetchurl {

View file

@ -9577,7 +9577,9 @@ let
micropolis = callPackage ../games/micropolis { };
mnemosyne = callPackage ../games/mnemosyne { };
mnemosyne = callPackage ../games/mnemosyne {
inherit (pythonPackages) matplotlib cherrypy sqlite3;
};
naev = callPackage ../games/naev { };