mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.coinmarketcap: init at 4.2.1
This commit is contained in:
parent
c7d735a27b
commit
509a340d90
2 changed files with 21 additions and 0 deletions
19
pkgs/development/python-modules/coinmarketcap/default.nix
Normal file
19
pkgs/development/python-modules/coinmarketcap/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ lib, stdenv, buildPythonPackage, fetchPypi, requests-cache }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "coinmarketcap";
|
||||
version = "4.2.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0bk530cmfqri84m9386ydn3f89gq23nxylvnl523gr5589vw54bj";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests-cache ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A python wrapper around the https://coinmarketcap.com API.";
|
||||
homepage = https://github.com/barnumbirr/coinmarketcap;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
|
@ -18257,6 +18257,8 @@ EOF
|
|||
aiohue = callPackage ../development/python-modules/aiohue { };
|
||||
|
||||
PyMVGLive = callPackage ../development/python-modules/pymvglive { };
|
||||
|
||||
coinmarketcap = callPackage ../development/python-modules/coinmarketcap { };
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
|
Loading…
Reference in a new issue