mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
pythonPackages.ipfsapi: refactor move to python-modules
This commit is contained in:
parent
8d57d4fbe8
commit
2fb2f7d4e4
30
pkgs/development/python-modules/ipfsapi/default.nix
Normal file
30
pkgs/development/python-modules/ipfsapi/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -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";
|
||||||
|
Loading…
Reference in New Issue
Block a user