Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-devspaces / default.nix
blob5ca30f45de29d13092697d96fe5a88bc4c7d222d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrestazure
5 , azure-common
6 , azure-mgmt-nspkg
7 }:
9 buildPythonPackage rec {
10   pname = "azure-mgmt-devspaces";
11   version = "0.2.0";
13   src = fetchPypi {
14     inherit pname version;
15     extension = "zip";
16     sha256 = "0dvjsr9i87j1ggbj3dcmgifpk64xr5f5ziwf7z1fwkcx0szcid7k";
17   };
19   propagatedBuildInputs = [
20     msrestazure
21     azure-common
22     azure-mgmt-nspkg
23   ];
25   # has no tests
26   doCheck = false;
28   meta = with lib; {
29     description = "This is the Microsoft Azure Dev Spaces Client Library";
30     homepage = "https://github.com/Azure/azure-sdk-for-python";
31     license = licenses.mit;
32     maintainers = with maintainers; [ maxwilson ];
33   };