tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.azure-core: 1.15.0 -> 1.16.0
Jonathan Ringer
4 years ago
d556c247
dc4d3016
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
azure-core
default.nix
+6
-2
pkgs/development/python-modules/azure-core/default.nix
···
1
1
{ lib, buildPythonPackage, fetchPypi, isPy27
2
2
, aiodns
3
3
, aiohttp
4
4
+
, flask
4
5
, mock
5
6
, msrest
6
7
, pytest
···
14
15
}:
15
16
16
17
buildPythonPackage rec {
17
17
-
version = "1.15.0";
18
18
+
version = "1.16.0";
18
19
pname = "azure-core";
19
20
disabled = isPy27;
20
21
21
22
src = fetchPypi {
22
23
inherit pname version;
23
24
extension = "zip";
24
24
-
sha256 = "197917b98fec661c35392e32abec4f690ac2117371a814e25e57c224ce23cf1f";
25
25
+
sha256 = "b1c7d2e01846074f258c8b2e592239aef836a2b1c27d8d0e8491a2c7e2906ef4";
25
26
};
26
27
27
28
propagatedBuildInputs = [
···
32
33
checkInputs = [
33
34
aiodns
34
35
aiohttp
36
36
+
flask
35
37
mock
36
38
msrest
37
39
pytest
···
51
53
# wants network
52
54
"tests/async_tests/test_streaming_async.py"
53
55
"tests/test_streaming.py"
56
56
+
# testserver tests require being in a very specific working directory to make it work
57
57
+
"tests/testserver_tests/"
54
58
];
55
59
56
60
meta = with lib; {