Skip to content

Commit

Permalink
python pies: remove packages
Browse files Browse the repository at this point in the history
(cherry picked from commit 0f0aeed)
  • Loading branch information
Samuel Leathers authored and FRidh committed Sep 17, 2017
1 parent 2ad8055 commit f22378c
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -7128,45 +7128,6 @@ in {

phpserialize = callPackage ../development/python-modules/phpserialize { };

pies = buildPythonPackage rec {
name = "pies-2.6.5";

src = pkgs.fetchurl {
url = "mirror://pypi/p/pies/${name}.tar.gz";
sha256 = "d8d6ae4faa0a7da5d634ad8c6ca4bb22b70ad53bb7ecd91af23d490fcd2a88e8";
};

deps = if !isPy3k then [ self.pies2overrides self.enum34 ]
else if isPy33 then [ self.enum34 ]
else [];

propagatedBuildInputs = deps;

meta = {
description = "The simplest way to write one program that runs on both Python 2 and Python 3";
homepage = https://github.com/timothycrosley/pies;
license = licenses.mit;
};
};

pies2overrides = buildPythonPackage rec {
name = "pies2overrides-2.6.5";
disabled = isPy3k;

src = pkgs.fetchurl {
url = "mirror://pypi/p/pies2overrides/${name}.tar.gz";
sha256 = "2a91445afc7f692bdbabfbf00d3defb1d47ad7825eb568a6464359758ab35763";
};

propagatedBuildInputs = with self; [ ipaddress ];

meta = {
description = "Defines override classes that should be included with pies only if running on Python2";
homepage = https://github.com/timothycrosley/pies;
license = licenses.mit;
};
};

plotly = callPackage ../development/python-modules/plotly { };

podcastparser = callPackage ../development/python-modules/podcastparser { };
Expand Down

0 comments on commit f22378c

Please sign in to comment.