We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c463d5 commit 52b40d9Copy full SHA for 52b40d9
pkgs/development/python-modules/python-binance/default.nix
@@ -13,24 +13,27 @@
13
requests,
14
six,
15
ujson,
16
+ setuptools,
17
websockets,
18
}:
19
20
buildPythonPackage rec {
21
pname = "python-binance";
22
version = "1.0.27";
- format = "setuptools";
23
+ pyproject = true;
24
- disabled = pythonOlder "3.6";
25
+ disabled = pythonOlder "3.11";
26
27
src = fetchFromGitHub {
28
owner = "sammchardy";
- repo = pname;
29
+ repo = "python-binance";
30
tag = "v${version}";
31
hash = "sha256-nsJuHxPXhMBRY4BUDDLj5sHK/GuJA0pBU3RGUDxVm50=";
32
};
33
- propagatedBuildInputs = [
34
+ build-system = [ setuptools ];
35
+
36
+ dependencies = [
37
aiohttp
38
dateparser
39
requests
0 commit comments