nixpkgs/pkgs/development/python-modules/azure-mgmt-nspkg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
637 B
Nix
Raw Permalink Normal View History

{
pkgs,
buildPythonPackage,
fetchPypi,
azure-nspkg,
}:
buildPythonPackage rec {
version = "3.0.2";
format = "setuptools";
pname = "azure-mgmt-nspkg";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "8b2287f671529505b296005e6de9150b074344c2c7d1c805b3f053d081d58c52";
};
propagatedBuildInputs = [ azure-nspkg ];
doCheck = false;
meta = with pkgs.lib; {
description = "Microsoft Azure SDK for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
2020-11-15 14:35:46 +00:00
maintainers = with maintainers; [
olcai
maxwilson
];
};
}