lol

Merge pull request #21762 from mguentner/ipfsapi

pythonPackages.ipfsapi: init at 0.4.0

authored by

Frederik Rietdijk and committed by
GitHub
49640fcd 883f4493

+21
+21
pkgs/top-level/python-packages.nix
··· 7719 7719 }; 7720 7720 }; 7721 7721 7722 + ipfsapi = buildPythonPackage rec { 7723 + name = "ipfsapi-${version}"; 7724 + version = "0.4.0"; 7725 + disabled = isPy26 || isPy27; 7726 + 7727 + src = pkgs.fetchurl { 7728 + url = "mirror://pypi/i/ipfsapi/${name}.tar.gz"; 7729 + sha256 = "0mqqsihannxzaqi8zcj9nca7fxwg1c85bp7xxic3xqa5zslcdcc3"; 7730 + }; 7731 + 7732 + buildInputs = with self; [ pkgs.pandoc ]; 7733 + propagatedBuildInputs = with self; [ six requests2 ]; 7734 + 7735 + meta = { 7736 + description = "A python client library for the IPFS API"; 7737 + license = licenses.mit; 7738 + maintainers = with maintainers; [ mguentner ]; 7739 + homepage = "https://pypi.python.org/pypi/ipfsapi"; 7740 + }; 7741 + }; 7742 + 7722 7743 itsdangerous = buildPythonPackage rec { 7723 7744 name = "itsdangerous-0.24"; 7724 7745