Merge pull request #238174 from r-ryantm/auto-update/python310Packages.sexpdata
python310Packages.sexpdata: 1.0.0 -> 1.0.1
This commit is contained in:
@@ -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; [ ];
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user