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
30
pkgs/development/python-modules/webdavclient3/default.nix
Normal file
30
pkgs/development/python-modules/webdavclient3/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ buildPythonPackage, fetchPypi, isPy27, lib, python-dateutil, lxml, requests
|
||||
, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "webdavclient3";
|
||||
version = "3.14.6";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "bcd22586bb0d58abc26ca56054fd04228e704bd36073c3080f4597c1556c880d";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ python-dateutil lxml requests ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
# disable tests completely, as most of them fail due to urllib3 not being able to establish a http connection
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "webdav3.client" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Easy to use WebDAV Client for Python 3.x";
|
||||
homepage = "https://github.com/ezhov-evgeny/webdav-client-python-3";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dmrauh ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue