tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.requests-futures: init at 1.0.0
Lein Matsumaru
4 years ago
4c156c00
66269338
+27
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
requests-futures
default.nix
top-level
python-packages.nix
+25
pkgs/development/python-modules/requests-futures/default.nix
···
1
1
+
{ buildPythonPackage, fetchPypi, requests, lib }:
2
2
+
3
3
+
buildPythonPackage rec {
4
4
+
pname = "requests-futures";
5
5
+
version = "1.0.0";
6
6
+
7
7
+
src = fetchPypi {
8
8
+
inherit pname version;
9
9
+
sha256 = "35547502bf1958044716a03a2f47092a89efe8f9789ab0c4c528d9c9c30bc148";
10
10
+
};
11
11
+
12
12
+
propagatedBuildInputs = [ requests ];
13
13
+
14
14
+
# tests are disabled because they require being online
15
15
+
doCheck = false;
16
16
+
17
17
+
pythonImportsCheck = [ "requests_futures" ];
18
18
+
19
19
+
meta = with lib; {
20
20
+
description = "Asynchronous Python HTTP Requests for Humans using Futures";
21
21
+
homepage = "https://github.com/ross/requests-futures";
22
22
+
license = with licenses; [ asl20 ];
23
23
+
maintainers = with maintainers; [ applePrincess ];
24
24
+
};
25
25
+
}
+2
pkgs/top-level/python-packages.nix
···
7538
7538
7539
7539
requests-file = callPackage ../development/python-modules/requests-file { };
7540
7540
7541
7541
+
requests-futures = callPackage ../development/python-modules/requests-futures { };
7542
7542
+
7541
7543
requests-http-signature = callPackage ../development/python-modules/requests-http-signature { };
7542
7544
7543
7545
requests-kerberos = callPackage ../development/python-modules/requests-kerberos { };