python312Packages.kneaddata: init at 0.7.7-alpha (#340230)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-signalr / default.nix
blobe40c1670747f921595453da84c805c127e2e1d7d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   msrest,
6   msrestazure,
7   azure-common,
8   azure-mgmt-core,
9   pythonOlder,
12 buildPythonPackage rec {
13   pname = "azure-mgmt-signalr";
14   version = "1.2.0";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchPypi {
20     inherit pname version;
21     extension = "zip";
22     hash = "sha256-jbFhVoJbObpvcVJr2VoUzY5CmSblJ6OK7Q3l17SARfg=";
23   };
25   propagatedBuildInputs = [
26     msrest
27     msrestazure
28     azure-common
29     azure-mgmt-core
30   ];
32   # has no tests
33   doCheck = false;
35   meta = with lib; {
36     description = "This is the Microsoft Azure SignalR Client Library";
37     homepage = "https://github.com/Azure/azure-sdk-for-python";
38     license = licenses.mit;
39     maintainers = with maintainers; [ maxwilson ];
40   };