12 buildPythonPackage rec {
13 pname = "py-serializable";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "serializable";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-U01XRT6XS0Uxpk+2pYOGAkZiZ5kogMBtcuEU1OJpSMo=";
30 propagatedBuildInputs = [
40 pythonImportsCheck = [
45 # AssertionError: '<ns0[155 chars]itle>The Phoenix
46 "test_serializable_no_defaultNS"
47 "test_serializable_with_defaultNS"
51 description = "Pythonic library to aid with serialisation and deserialisation to/from JSON and XML";
52 homepage = "https://github.com/madpah/serializable";
53 changelog = "https://github.com/madpah/serializable/blob/${version}/CHANGELOG.md";
54 license = licenses.asl20;
55 maintainers = with maintainers; [ fab ];