mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
pythonPackages.azure-datalake-store: init at 0.0.45
This commit is contained in:
parent
ca147f91d2
commit
c2d4ae671e
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, requests
|
||||
, adal
|
||||
, azure-common
|
||||
, futures
|
||||
, pathlib2
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-datalake-store";
|
||||
version = "0.0.45";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1k2wkpdv30wjmi53zdcsa5xfqw8gyak39na73ja6rb7wy8196wbd";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
adal
|
||||
azure-common
|
||||
] ++ lib.optionals (!isPy3k) [
|
||||
futures
|
||||
pathlib2
|
||||
];
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "This project is the Python filesystem library for Azure Data Lake Store";
|
||||
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/data-lake-store?view=azure-python;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mwilsoninsight ];
|
||||
};
|
||||
}
|
@ -250,6 +250,8 @@ in {
|
||||
|
||||
azure-cosmosdb-table = callPackage ../development/python-modules/azure-cosmosdb-table { };
|
||||
|
||||
azure-datalake-store = callPackage ../development/python-modules/azure-datalake-store { };
|
||||
|
||||
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
||||
|
||||
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
||||
|
Loading…
Reference in New Issue
Block a user