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/biplist/default.nix
Normal file
43
pkgs/development/python-modules/biplist/default.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "biplist";
|
||||
version = "1.0.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1im45a9z7ryrfyp1v6i39qia5qagw6i1mhif0hl0praz9iv4j1ac";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Failing tests
|
||||
"testConvertToXMLPlistWithData"
|
||||
"testWriteToFile"
|
||||
"testXMLPlist"
|
||||
"testXMLPlistWithData"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "biplist" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://bitbucket.org/wooster/biplist/src/master/";
|
||||
description = "Binary plist parser/generator for Python";
|
||||
longDescription = ''
|
||||
Binary Property List (plist) files provide a faster and smaller
|
||||
serialization format for property lists on OS X.
|
||||
|
||||
This is a library for generating binary plists which can be read
|
||||
by OS X, iOS, or other clients.
|
||||
'';
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ siriobalmelli ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue