uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
33
pkgs/development/python-modules/pydocumentdb/default.nix
Normal file
33
pkgs/development/python-modules/pydocumentdb/default.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
, six
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "2.3.5";
|
||||
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 = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue