Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / biplist / default.nix
blob26247a3930cda9d869cf0ba0e9f748940c0ad6b8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "biplist";
9   version = "1.0.3";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1im45a9z7ryrfyp1v6i39qia5qagw6i1mhif0hl0praz9iv4j1ac";
15   };
17   nativeCheckInputs = [
18     pytestCheckHook
19   ];
21   disabledTests = [
22     # Failing tests
23     "testConvertToXMLPlistWithData"
24     "testWriteToFile"
25     "testXMLPlist"
26     "testXMLPlistWithData"
27   ];
29   pythonImportsCheck = [ "biplist" ];
31   meta = with lib; {
32     homepage = "https://bitbucket.org/wooster/biplist/src/master/";
33     description = "Binary plist parser/generator for Python";
34     longDescription = ''
35       Binary Property List (plist) files provide a faster and smaller
36       serialization format for property lists on OS X.
38       This is a library for generating binary plists which can be read
39       by OS X, iOS, or other clients.
40     '';
41     license = licenses.bsd3;
42     maintainers = with maintainers; [ siriobalmelli ];
43   };