forked from mirrors/nixpkgs
pythonPackages.pyamf: init at 0.8.0
This commit is contained in:
parent
1b594f05a2
commit
1ec13ff726
20
pkgs/development/python-modules/pyamf/default.nix
Normal file
20
pkgs/development/python-modules/pyamf/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue