nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 azure-common,
4 azure-mgmt-core,
5 buildPythonPackage,
6 fetchPypi,
7 isodate,
8 msrest,
9 setuptools,
10 typing-extensions,
11}:
12
13buildPythonPackage rec {
14 pname = "azure-mgmt-web";
15 version = "10.1.0";
16 pyproject = true;
17
18 src = fetchPypi {
19 pname = "azure_mgmt_web";
20 inherit version;
21 hash = "sha256-JtNZS74bMFibcpIsNYVbxbdMFR8CJBR6YNGnUjSFkiY=";
22 };
23
24 build-system = [ setuptools ];
25
26 dependencies = [
27 azure-common
28 azure-mgmt-core
29 isodate
30 msrest
31 typing-extensions
32 ];
33
34 # has no tests
35 doCheck = false;
36
37 meta = {
38 description = "This is the Microsoft Azure Web Apps Management Client Library";
39 homepage = "https://github.com/Azure/azure-sdk-for-python";
40 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-web_${version}/sdk/appservice/azure-mgmt-web/CHANGELOG.md";
41 license = lib.licenses.mit;
42 maintainers = with lib.maintainers; [ maxwilson ];
43 };
44}