depot/third_party/nixpkgs/pkgs/development/python-modules/js2py/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

47 lines
912 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, pythonAtLeast
, setuptools
, tzlocal
, six
, pyjsparser
}:
buildPythonPackage rec {
pname = "js2py";
version = "0.74";
pyproject = true;
# broken with Python 3.12
# https://github.com/PiotrDabkowski/Js2Py/issues/317
disabled = pythonAtLeast "3.12";
src = fetchPypi {
pname = "Js2Py";
inherit version;
hash = "sha256-OfOmqoRpGA77o8hncnHfJ8MTMv0bRx3xryr1i4e4ly8=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
pyjsparser
six
tzlocal
];
# Test require network connection
doCheck = false;
pythonImportsCheck = [ "js2py" ];
meta = with lib; {
description = "JavaScript to Python Translator & JavaScript interpreter written in 100% pure Python";
homepage = "https://github.com/PiotrDabkowski/Js2Py";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}