linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-binance / default.nix
blobaea47c7b9e726faa88b651a62b514cac72e4d040
1 { lib, buildPythonPackage, fetchPypi
2 , pytest, requests-mock, tox
3 , autobahn, certifi, chardet, cryptography, dateparser, pyopenssl, requests, service-identity, twisted }:
5 buildPythonPackage rec {
6   version = "0.7.9";
7   pname = "python-binance";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "476459d91f6cfe0a37ccac38911643ea6cca632499ad8682e0957a075f73d239";
12   };
14   doCheck = false;  # Tries to test multiple interpreters with tox
15   checkInputs = [ pytest requests-mock tox ];
17   propagatedBuildInputs = [ autobahn certifi chardet cryptography dateparser pyopenssl requests service-identity twisted ];
19   meta = {
20     description = "Binance Exchange API python implementation for automated trading";
21     homepage = "https://github.com/sammchardy/python-binance";
22     license = lib.licenses.mit;
23     maintainers = [ lib.maintainers.bhipple ];
24   };