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
44
pkgs/development/python-modules/pymaven-patch/default.nix
Normal file
44
pkgs/development/python-modules/pymaven-patch/default.nix
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, pbr
|
||||
, requests
|
||||
, six
|
||||
, lxml
|
||||
, pytestCheckHook
|
||||
, pytest-cov
|
||||
, mock
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "pymaven-patch";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "d55b29bd4aeef3510904a12885eb6856b5bd48f3e29925a123461429f9ad85c0";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pbr
|
||||
requests
|
||||
six
|
||||
lxml
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
pytest-cov
|
||||
mock
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pymaven"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python access to maven";
|
||||
homepage = "https://github.com/nexB/pymaven";
|
||||
license = licenses.asl20;
|
||||
maintainers = teams.determinatesystems.members;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue