summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyamf/default.nix
blob: 5ac6ef82964ccb6c08f839ffaa7818e5cf683a7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchPypi, buildPythonPackage, isPy3k, defusedxml }:

buildPythonPackage rec {
  pname = "PyAMF";
  version = "0.8.0";

  # according to setup.py
  disabled = isPy3k;

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