mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
pythonPackages.bitcoin-price-api: init at 0.0.4
This commit is contained in:
parent
b6d9f51359
commit
d856b50bad
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi
|
||||||
|
, dateutil, requests }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "bitcoin-price-api";
|
||||||
|
version = "0.0.4";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "bc68076f9632aaa9a8009d916d67a709c1e045dd904cfc7a3e8be33960d32029";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ dateutil requests ];
|
||||||
|
|
||||||
|
# No tests in archive
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://github.com/dursk/bitcoin-price-api";
|
||||||
|
description = "Price APIs for bitcoin exchanges";
|
||||||
|
license = with lib.licenses; [ mit ];
|
||||||
|
maintainers = with lib.maintainers; [ bhipple ];
|
||||||
|
};
|
||||||
|
}
|
@ -153,6 +153,8 @@ in {
|
|||||||
bap = pkgs.ocamlPackages_4_02.bap;
|
bap = pkgs.ocamlPackages_4_02.bap;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bitcoin-price-api = callPackage ../development/python-modules/bitcoin-price-api { };
|
||||||
|
|
||||||
blivet = callPackage ../development/python-modules/blivet { };
|
blivet = callPackage ../development/python-modules/blivet { };
|
||||||
|
|
||||||
breathe = callPackage ../development/python-modules/breathe { };
|
breathe = callPackage ../development/python-modules/breathe { };
|
||||||
|
Loading…
Reference in New Issue
Block a user