1{ lib
2, buildPythonPackage
3, fetchPypi
4, msrestazure
5, azure-common
6, azure-mgmt-nspkg
7}:
8
9buildPythonPackage rec {
10 pname = "azure-mgmt-devspaces";
11 version = "0.1.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 extension = "zip";
16 sha256 = "4710dd59fc219ebfa4272dbbad58bf62093b52ce22bfd32a5c0279d2149471b5";
17 };
18
19 propagatedBuildInputs = [
20 msrestazure
21 azure-common
22 azure-mgmt-nspkg
23 ];
24
25 # has no tests
26 doCheck = false;
27
28 meta = with lib; {
29 description = "This is the Microsoft Azure Dev Spaces Client Library";
30 homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-devspaces;
31 license = licenses.mit;
32 maintainers = with maintainers; [ mwilsoninsight ];
33 };
34}