pythonPackages.ipfsapi: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-15 23:40:14 -04:00 committed by Frederik Rietdijk
parent 8d57d4fbe8
commit 2fb2f7d4e4
2 changed files with 31 additions and 21 deletions

View File

@ -0,0 +1,30 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, isPy27
, six
, requests
}:
buildPythonPackage rec {
pname = "ipfsapi";
version = "0.4.2.post1";
disabled = isPy27;
src = fetchFromGitHub {
owner = "ipfs";
repo = "py-ipfs-api";
rev = "0c485544a114f580c65e2ffbb5782efbf7fd9f61";
sha256 = "1v7f77cv95yv0v80gisdh71mj7jcq41xcfip6bqm57zfdbsa0xpn";
};
propagatedBuildInputs = [ six requests ];
meta = with stdenv.lib; {
description = "A python client library for the IPFS API";
license = licenses.mit;
maintainers = with maintainers; [ mguentner ];
homepage = "https://pypi.python.org/pypi/ipfsapi";
};
}

View File

@ -1896,27 +1896,7 @@ in {
imaplib2 = callPackage ../development/python-modules/imaplib2 { }; imaplib2 = callPackage ../development/python-modules/imaplib2 { };
ipfsapi = buildPythonPackage rec { ipfsapi = callPackage ../development/python-modules/ipfsapi { };
name = "ipfsapi-${version}";
version = "0.4.2.post1";
disabled = isPy27;
src = pkgs.fetchFromGitHub {
owner = "ipfs";
repo = "py-ipfs-api";
rev = "0c485544a114f580c65e2ffbb5782efbf7fd9f61";
sha256 = "1v7f77cv95yv0v80gisdh71mj7jcq41xcfip6bqm57zfdbsa0xpn";
};
propagatedBuildInputs = with self; [ six requests ];
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 { itsdangerous = buildPythonPackage rec {
name = "itsdangerous-0.24"; name = "itsdangerous-0.24";