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;
};
}