diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-08-04 17:11:45 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-08-04 17:11:45 +0200 |
commit | 1c3d7000a75014e80cd292a507035da860160005 (patch) | |
tree | 985eb10e87bebc4ffe7fb2c9e5a3813a3fb53f49 /gnu/packages/python-web.scm | |
parent | d648037edc2c9355a99becd6f5b71f9ae392ac4f (diff) |
gnu: Add python-azure-nspkg.
* gnu/packages/python-web.scm (python-azure-nspkg): New variable.
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index b4798ca8c2..3dcacef6b4 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6153,3 +6153,22 @@ your code non-blocking and speedy.") "Socks is a library providing core proxy (SOCKS4, SOCKS5, HTTP tunneling) functionality.") (license license:asl2.0))) + +(define-public python-azure-nspkg + (package + (name "python-azure-nspkg") + (version "3.0.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "azure-nspkg" version ".zip")) + (sha256 + (base32 + "1l4xwdh0fcnvrv0mzig4g2kgqkfbsy64zjm1ggc6grk3mykcxlz7")))) + (build-system python-build-system) + (native-inputs `(("unzip" ,unzip))) + (home-page "https://github.com/Azure/azure-sdk-for-python") + (synopsis "Azure namespace internals") + (description + "This package is an internal Azure namespace package.") + (license license:expat))) |