Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 26 lines 551 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4}: 5 6buildPythonPackage rec { 7 pname = "javaobj-py3"; 8 version = "0.3.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0j9532i7bnjd0v4a8c36mjj9rsdnbmckk65dh9sbmvnhy3j6jx55"; 13 }; 14 15 # Tests assume network connectivity 16 doCheck = false; 17 18 meta = { 19 description = "Module for serializing and de-serializing Java objects"; 20 homepage = "https://github.com/tcalmant/python-javaobj"; 21 license = lib.licenses.asl20; 22 maintainers = with lib.maintainers; [ 23 kamadorueda 24 ]; 25 }; 26}