nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, azure-nspkg
5}:
6
7buildPythonPackage rec {
8 pname = "azure-cosmosdb-nspkg";
9 version = "2.0.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "acf691e692818d9a65c653c7a3485eb8e35c0bdc496bba652e5ea3905ba09cd8";
14 };
15
16 propagatedBuildInputs = [
17 azure-nspkg
18 ];
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}