about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyamf/default.nix
blob: 1c31efadff7cec91b76191415e6b16591a8c794b (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;
  };
}