mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
pithos: use Python 3.5
This commit is contained in:
parent
5c6d7825b4
commit
a65e049ca4
|
@ -6,8 +6,6 @@ pythonPackages.buildPythonApplication rec {
|
|||
version = "1.1.2";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
|
@ -15,6 +13,9 @@ pythonPackages.buildPythonApplication rec {
|
|||
sha256 = "0zk9clfawsnwmgjbk7y5d526ksxd1pkh09ln6sb06v4ygaiifcxp";
|
||||
};
|
||||
|
||||
# No tests in repo
|
||||
doCheck = false;
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py --replace "/usr/share" "$out/share"
|
||||
'';
|
||||
|
|
|
@ -13769,7 +13769,7 @@ in
|
|||
pidgin-opensteamworks = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-opensteamworks { };
|
||||
|
||||
pithos = callPackage ../applications/audio/pithos {
|
||||
pythonPackages = python34Packages;
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
||||
pinfo = callPackage ../applications/misc/pinfo { };
|
||||
|
|
Loading…
Reference in a new issue