2018-10-16 22:05:31 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, spark_parser
|
|
|
|
, xdis
|
2018-10-25 19:04:49 +01:00
|
|
|
, nose
|
|
|
|
, pytest
|
|
|
|
, hypothesis
|
|
|
|
, six
|
2018-10-16 22:05:31 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "uncompyle6";
|
2018-11-09 00:09:31 +00:00
|
|
|
version = "3.2.4";
|
2018-10-16 22:05:31 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-09 00:09:31 +00:00
|
|
|
sha256 = "0lv0ks7w5bsl8bndm6ikl4yprkq2ps23y409ldlycrvlggjg44y5";
|
2018-10-16 22:05:31 +01:00
|
|
|
};
|
|
|
|
|
2018-10-25 19:04:49 +01:00
|
|
|
checkInputs = [ nose pytest hypothesis six ];
|
2018-10-16 22:05:31 +01:00
|
|
|
propagatedBuildInputs = [ spark_parser xdis ];
|
|
|
|
|
2018-10-25 19:04:49 +01:00
|
|
|
# six import errors (yet it is supplied...)
|
|
|
|
checkPhase = ''
|
|
|
|
pytest ./pytest --ignore=pytest/test_build_const_key_map.py \
|
|
|
|
--ignore=pytest/test_grammar.py
|
|
|
|
'';
|
|
|
|
|
2018-10-16 22:05:31 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python cross-version byte-code deparser";
|
|
|
|
homepage = https://github.com/rocky/python-uncompyle6/;
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|