My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/javaobj-py3/default.nix

31 lines
670 B

{ buildPythonPackage
, fetchPypi
, isPy27
, lib
, numpy
}:
buildPythonPackage rec {
pname = "javaobj-py3";
version = "0.4.3";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "38f74db3a57e9998a9774e3614afb95cb396f139f29b3fdb130c5af554435259";
};
propagatedBuildInputs = [ numpy ];
# Tests assume network connectivity
doCheck = false;
pythonImportsCheck = [ "javaobj" ];
meta = with lib; {
description = "Module for serializing and de-serializing Java objects";
homepage = "https://github.com/tcalmant/python-javaobj";
license = licenses.asl20;
maintainers = with maintainers; [ kamadorueda ];
};
}