nixos/doh-server: init
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-devspaces / default.nix
blob196fadd01e1eed0ec2c31878a8775c031359d80d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   msrestazure,
6   azure-common,
7   azure-mgmt-nspkg,
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-devspaces";
12   version = "0.2.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     sha256 = "0dvjsr9i87j1ggbj3dcmgifpk64xr5f5ziwf7z1fwkcx0szcid7k";
19   };
21   propagatedBuildInputs = [
22     msrestazure
23     azure-common
24     azure-mgmt-nspkg
25   ];
27   # has no tests
28   doCheck = false;
30   meta = with lib; {
31     description = "This is the Microsoft Azure Dev Spaces Client Library";
32     homepage = "https://github.com/Azure/azure-sdk-for-python";
33     license = licenses.mit;
34     maintainers = with maintainers; [ maxwilson ];
35   };