2018-03-10 22:36:00 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, six, pytest, pythonOlder }:
|
2017-10-29 13:32:12 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "construct";
|
2017-10-29 13:33:18 +00:00
|
|
|
version = "2.8.16";
|
2017-11-09 11:26:09 +00:00
|
|
|
name = pname + "-" + version;
|
2017-10-29 13:32:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "construct";
|
|
|
|
repo = "construct";
|
|
|
|
rev = "v${version}";
|
2017-10-29 13:33:18 +00:00
|
|
|
sha256 = "0lzz1dy419n254qccch7yx4nkpwd0fsyjhnsnaf6ysgwzqxxv63j";
|
2017-10-29 13:32:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2018-03-10 22:36:00 +00:00
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test -k 'not test_numpy' tests
|
|
|
|
'';
|
2017-10-29 13:32:12 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Powerful declarative parser (and builder) for binary data";
|
|
|
|
homepage = http://construct.readthedocs.org/;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
|
|
};
|
|
|
|
}
|