pythonPackages.uncompyle6: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
d3f57e372d
commit
d1a48cc23e
25
pkgs/development/python-modules/uncompyle6/default.nix
Normal file
25
pkgs/development/python-modules/uncompyle6/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, spark_parser
|
||||
, xdis
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "uncompyle6";
|
||||
version = "2.8.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0hx5sji6qjvnq1p0zhvyk5hgracpv2w6iar1j59qwllxv115ffi1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ spark_parser xdis ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python cross-version byte-code deparser";
|
||||
homepage = https://github.com/rocky/python-uncompyle6/;
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user