fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 azure-common,
4 azure-mgmt-core,
5 buildPythonPackage,
6 fetchPypi,
7 isodate,
8 setuptools,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-powerbiembedded";
13 version = "3.0.0";
14 pyproject = true;
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-yz2D3WfQKEdkTm10ZKIhZMi4y6GF6yz+L1+nB/VFofo=";
19 };
20
21 build-system = [ setuptools ];
22
23 dependencies = [
24 azure-common
25 azure-mgmt-core
26 isodate
27 ];
28
29 # Module has only tests in mono-repo
30 doCheck = false;
31
32 meta = {
33 description = "This is the Microsoft Azure Power BI Embedded Management Client Library";
34 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/powerbiembedded/azure-mgmt-powerbiembedded";
35 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-powerbiembedded_${version}/sdk/powerbiembedded/azure-mgmt-powerbiembedded/CHANGELOG.md";
36 license = lib.licenses.mit;
37 maintainers = with lib.maintainers; [ maxwilson ];
38 };
39}