3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.pyamf: init at 0.8.0

This commit is contained in:
Tuomas Tynkkynen 2017-11-03 20:32:36 +02:00
parent 1b594f05a2
commit 1ec13ff726
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchPypi, buildPythonPackage, defusedxml }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "PyAMF";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "1r3lp9gkph48g9lijby5rs5daa3lhxs204r14zw4kvp3hf4xcm84";
};
propagatedBuildInputs = [ defusedxml ];
meta = with stdenv.lib; {
description = "AMF (Action Message Format) support for Python";
homepage = https://pypi.python.org/pypi/PyAMF;
license = licenses.mit;
};
}

View file

@ -220,6 +220,8 @@ in {
pyaes = callPackage ../development/python-modules/pyaes { };
pyamf = callPackage ../development/python-modules/pyamf { };
pyatspi = if isPy3k then callPackage ../development/python-modules/pyatspi { } else throw "pyatspi not supported for interpreter ${python.executable}";
pycairo = callPackage ../development/python-modules/pycairo { };