python3Packages.py3amf: init at 0.8.11
This commit is contained in:
parent
13743dda29
commit
728e634a69
40
pkgs/development/python-modules/py3amf/default.nix
Normal file
40
pkgs/development/python-modules/py3amf/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
setuptools,
|
||||
fetchFromGitHub,
|
||||
defusedxml,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "py3amf";
|
||||
version = "0.8.11";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "StdCarrot";
|
||||
repo = "Py3AMF";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-9zuHh5+ggIjv1LcjpBNHy2yh09KsFpxUdGrtKGm94Zg=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
defusedxml
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyamf"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Action Message Format (AMF) support for Python 3";
|
||||
homepage = "https://github.com/StdCarrot/Py3AMF";
|
||||
changelog = "https://github.com/StdCarrot/Py3AMF/blob/${src.rev}/CHANGES.txt";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ zhaofengli ];
|
||||
};
|
||||
}
|
||||
@ -12107,6 +12107,8 @@ self: super: with self; {
|
||||
|
||||
py2vega = callPackage ../development/python-modules/py2vega { };
|
||||
|
||||
py3amf = callPackage ../development/python-modules/py3amf { };
|
||||
|
||||
py3buddy = callPackage ../development/python-modules/py3buddy { };
|
||||
|
||||
py3dns = callPackage ../development/python-modules/py3dns { };
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user