Merge pull request #308463 from fabaff/linknlink-bump

python312Packages.linknlink: 0.2.1 -> 0.2.2
This commit is contained in:
Nick Cao 2024-05-02 09:37:35 -04:00 committed by GitHub
commit 8adc2dfa5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,14 +1,15 @@
{ lib
, buildPythonPackage
, cryptography
, fetchFromGitHub
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
cryptography,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "linknlink";
version = "0.2.1";
version = "0.2.2";
pyproject = true;
disabled = pythonOlder "3.7";
@ -17,20 +18,14 @@ buildPythonPackage rec {
owner = "xuanxuan000";
repo = "python-linknlink";
rev = "refs/tags/${version}";
hash = "sha256-MOZw+7oFHeH7Vaj6pylR7wqe3ZyHcsiG+n8jnRAQ8PA=";
hash = "sha256-G0URNUHIh/td+A8MhIC0mePx2SmhEXhIzOpbVft33+w=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
cryptography
];
dependencies = [ cryptography ];
pythonImportsCheck = [
"linknlink"
];
pythonImportsCheck = [ "linknlink" ];
# Module has no test
doCheck = false;