1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 azure-nspkg,
6}:
7
8buildPythonPackage rec {
9 pname = "azure-cosmosdb-nspkg";
10 version = "2.0.2";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "acf691e692818d9a65c653c7a3485eb8e35c0bdc496bba652e5ea3905ba09cd8";
16 };
17
18 propagatedBuildInputs = [ azure-nspkg ];
19
20 # has no tests
21 doCheck = false;
22
23 meta = with lib; {
24 description = "This is the Microsoft Azure CosmosDB namespace package";
25 homepage = "https://github.com/Azure/azure-sdk-for-python";
26 license = licenses.mit;
27 maintainers = with maintainers; [ maxwilson ];
28 };
29}