pythonPackages.avro3k: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 11:45:05 +02:00
committed by Frederik Rietdijk
parent a5c4679bef
commit f79f9561a2
2 changed files with 20 additions and 17 deletions

View File

@@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "avro3k";
version = "1.7.7-SNAPSHOT";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "15ahl0irwwj558s964abdxg4vp6iwlabri7klsm2am6q5r0ngsky";
};
doCheck = false; # No such file or directory: './run_tests.py
meta = with stdenv.lib; {
description = "A serialization and RPC framework";
homepage = https://pypi.python.org/pypi/avro3k/;
};
}