Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-signalr / default.nix
blob2079cd8d0d98b8a9dffde28d3b2dcd5fa2d4b7c0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 , pythonOlder
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-signalr";
13   version = "1.2.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     extension = "zip";
21     hash = "sha256-jbFhVoJbObpvcVJr2VoUzY5CmSblJ6OK7Q3l17SARfg=";
22   };
24   propagatedBuildInputs = [
25     msrest
26     msrestazure
27     azure-common
28     azure-mgmt-core
29   ];
31   # has no tests
32   doCheck = false;
34   meta = with lib; {
35     description = "This is the Microsoft Azure SignalR Client Library";
36     homepage = "https://github.com/Azure/azure-sdk-for-python";
37     license = licenses.mit;
38     maintainers = with maintainers; [ maxwilson ];
39   };