croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-datamigration / default.nix
blob40f0d07e00de195cf13b4630944f35276251a9f9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   isPy3k,
6   msrest,
7   msrestazure,
8   azure-common,
9   azure-mgmt-nspkg,
10   azure-mgmt-core,
13 buildPythonPackage rec {
14   pname = "azure-mgmt-datamigration";
15   version = "10.0.0";
16   format = "setuptools";
18   src = fetchPypi {
19     inherit pname version;
20     extension = "zip";
21     sha256 = "5cee70f97fe3a093c3cb70c2a190c2df936b772e94a09ef7e3deb1ed177c9f32";
22   };
24   propagatedBuildInputs = [
25     msrest
26     msrestazure
27     azure-common
28     azure-mgmt-core
29   ] ++ lib.optionals (!isPy3k) [ azure-mgmt-nspkg ];
31   pythonNamespaces = [ "azure.mgmt" ];
33   # has no tests
34   doCheck = false;
36   meta = with lib; {
37     description = "This is the Microsoft Azure Data Migration Client Library";
38     homepage = "https://github.com/Azure/azure-sdk-for-python";
39     license = licenses.mit;
40     maintainers = with maintainers; [
41       maxwilson
42     ];
43   };