1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-23 01:41:05 +03:00

pythonPackages.javaobj-py3: init a 0.3.0

This commit is contained in:
Kevin Amado 2019-12-28 04:01:45 -05:00
parent ea7fa57694
commit 0634484a53
No known key found for this signature in database
GPG key ID: 04D0CEAF916A9A40
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
pname = "javaobj-py3";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "0j9532i7bnjd0v4a8c36mjj9rsdnbmckk65dh9sbmvnhy3j6jx55";
};
# 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
];
};
}