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
43
pkgs/development/python-modules/qds_sdk/default.nix
Normal file
43
pkgs/development/python-modules/qds_sdk/default.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{ lib,
|
||||
fetchFromGitHub,
|
||||
buildPythonPackage,
|
||||
boto,
|
||||
inflection,
|
||||
pytest,
|
||||
mock,
|
||||
requests,
|
||||
six,
|
||||
urllib3 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "qds_sdk";
|
||||
version = "1.16.1";
|
||||
|
||||
# pypi does not contain tests, using github sources instead
|
||||
src = fetchFromGitHub {
|
||||
owner = "qubole";
|
||||
repo = "qds-sdk-py";
|
||||
rev = "V${version}";
|
||||
sha256 = "05c7g63rcvvi4fgkcfsxh2a6hwlffbs18dhki222s5rpc49wi8zi";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
boto
|
||||
inflection
|
||||
requests
|
||||
six
|
||||
urllib3
|
||||
];
|
||||
|
||||
checkInputs = [ pytest mock ];
|
||||
checkPhase = ''
|
||||
py.test --disable-pytest-warnings tests
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Python module that provides the tools you need to authenticate with, and use the Qubole Data Service API";
|
||||
homepage = "https://github.com/qubole/qds-sdk-py";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ shahrukh330 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue