2019-12-28 09:01:45 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 01:34:09 +01:00
|
|
|
, isPy27
|
2019-12-28 09:01:45 +00:00
|
|
|
, lib
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "javaobj-py3";
|
2020-06-06 07:47:14 +01:00
|
|
|
version = "0.4.1";
|
2020-08-15 01:34:09 +01:00
|
|
|
disabled = isPy27;
|
2019-12-28 09:01:45 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:14 +01:00
|
|
|
sha256 = "419ff99543469e68149f875abb0db5251cecd350c03d2bfb4c94a5796f1cbc14";
|
2019-12-28 09:01:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Tests assume network connectivity
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Module for serializing and de-serializing Java objects";
|
|
|
|
homepage = "https://github.com/tcalmant/python-javaobj";
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = with lib.maintainers; [
|
|
|
|
kamadorueda
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|