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
76
pkgs/development/python-modules/pytenable/default.nix
Normal file
76
pkgs/development/python-modules/pytenable/default.nix
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
{ lib
|
||||
, appdirs
|
||||
, buildPythonPackage
|
||||
, defusedxml
|
||||
, fetchFromGitHub
|
||||
, marshmallow
|
||||
, pytest-datafiles
|
||||
, pytest-vcr
|
||||
, pytestCheckHook
|
||||
, python-box
|
||||
, python-dateutil
|
||||
, pythonOlder
|
||||
, requests
|
||||
, requests-pkcs12
|
||||
, responses
|
||||
, restfly
|
||||
, semver
|
||||
, typing-extensions
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytenable";
|
||||
version = "1.4.6";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tenable";
|
||||
repo = "pyTenable";
|
||||
rev = version;
|
||||
hash = "sha256-0isXHh0b2l8Br4XXR1y8A+zu8vkJjEsJ6faNNEx12lM=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
semver
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
appdirs
|
||||
defusedxml
|
||||
marshmallow
|
||||
python-box
|
||||
python-dateutil
|
||||
requests
|
||||
requests-pkcs12
|
||||
restfly
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
responses
|
||||
pytest-datafiles
|
||||
pytest-vcr
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Disable tests that requires a Docker container
|
||||
"test_uploads_docker_push_name_typeerror"
|
||||
"test_uploads_docker_push_tag_typeerror"
|
||||
"test_uploads_docker_push_cs_name_typeerror"
|
||||
"test_uploads_docker_push_cs_tag_typeerror"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"tenable"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library for the Tenable.io and TenableSC API";
|
||||
homepage = "https://github.com/tenable/pyTenable";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue