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

This commit is contained in:
vi
2014-03-26 00:37:14 +08:00
parent ed63dcb7c7
commit b5acc84ff3
2 changed files with 11 additions and 3 deletions
+8 -2
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 {