Merge pull request #238174 from r-ryantm/auto-update/python310Packages.sexpdata

python310Packages.sexpdata: 1.0.0 -> 1.0.1
This commit is contained in:
Mario Rodas
2023-06-17 00:17:44 -05:00
committed by GitHub
@@ -1,23 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "sexpdata";
version = "1.0.0";
version = "1.0.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-6NX3XDeKB8bRzGH62WEbRRyTg8AlMFLhYZioUuFiBwU=";
hash = "sha256-b2XxFSkYkMvOXNJpwTvfH4KkzSO8YbbhUKJ1Ee5qfV4=";
};
nativeBuildInputs = [
setuptools
];
doCheck = false;
pythonImportsCheck = [
"sexpdata"
];
meta = with lib; {
description = "S-expression parser for Python";
homepage = "https://github.com/tkf/sexpdata";
license = licenses.bsd0;
homepage = "https://github.com/jd-boyd/sexpdata";
changelog = "https://github.com/jd-boyd/sexpdata/releases/tag/v${version}";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}