mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
23 lines
525 B
Nix
23 lines
525 B
Nix
{ 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;
|
|
};
|
|
}
|