Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 821 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, pytest 3}: 4 5buildPythonPackage rec { 6 version = "1.0.3"; 7 pname = "biplist"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "1im45a9z7ryrfyp1v6i39qia5qagw6i1mhif0hl0praz9iv4j1ac"; 12 }; 13 14 checkInputs = [ 15 pytest 16 ]; 17 18 checkPhase = '' 19 pytest 20 ''; 21 22 meta = with lib; { 23 homepage = "https://bitbucket.org/wooster/biplist/src/master/"; 24 description = "Binary plist parser/generator for Python"; 25 longDescription = '' 26 Binary Property List (plist) files provide a faster and smaller 27 serialization format for property lists on OS X. 28 29 This is a library for generating binary plists which can be read 30 by OS X, iOS, or other clients. 31 ''; 32 license = licenses.bsd3; 33 maintainers = with maintainers; [ siriobalmelli ]; 34 }; 35}