Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #21762 from mguentner/ipfsapi
Browse files Browse the repository at this point in the history
pythonPackages.ipfsapi: init at 0.4.0
  • Loading branch information
FRidh committed Jan 10, 2017
2 parents 883f449 + a93416b commit 49640fc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -7719,6 +7719,27 @@ in {
};
};

ipfsapi = buildPythonPackage rec {
name = "ipfsapi-${version}";
version = "0.4.0";
disabled = isPy26 || isPy27;

src = pkgs.fetchurl {
url = "mirror://pypi/i/ipfsapi/${name}.tar.gz";
sha256 = "0mqqsihannxzaqi8zcj9nca7fxwg1c85bp7xxic3xqa5zslcdcc3";
};

buildInputs = with self; [ pkgs.pandoc ];
propagatedBuildInputs = with self; [ six requests2 ];

meta = {
description = "A python client library for the IPFS API";
license = licenses.mit;
maintainers = with maintainers; [ mguentner ];
homepage = "https://pypi.python.org/pypi/ipfsapi";
};
};

itsdangerous = buildPythonPackage rec {
name = "itsdangerous-0.24";

Expand Down

0 comments on commit 49640fc

Please sign in to comment.