nixpkgs/pkgs/development/python-modules/pydocumentdb/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

39 lines
707 B
Nix

{
buildPythonPackage,
lib,
fetchPypi,
six,
requests,
}:
buildPythonPackage rec {
version = "2.3.5";
format = "setuptools";
pname = "pydocumentdb";
src = fetchPypi {
inherit pname version;
sha256 = "1e6f072ae516fc061c9442f8ca470463b53dc626f0f6a86ff3a803293f4b50dd";
};
# https://github.com/Azure/azure-cosmos-python/issues/183
preBuild = ''
touch changelog.md
'';
propagatedBuildInputs = [
six
requests
];
# requires an active Azure Cosmos service
doCheck = false;
meta = with lib; {
description = "Azure Cosmos DB API";
homepage = "https://github.com/Azure/azure-cosmos-python";
license = licenses.mit;
maintainers = [ ];
};
}