Merge pull request #303895 from fabaff/simplekv-refactor
python312Packages.simplekv: refactor
This commit is contained in:
@@ -1,17 +1,19 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, dulwich
|
||||
, fetchFromGitHub
|
||||
, mock
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, six
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
dulwich,
|
||||
fetchFromGitHub,
|
||||
mock,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
six,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "simplekv";
|
||||
version = "0.14.1";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
@@ -22,16 +24,16 @@ buildPythonPackage rec {
|
||||
hash = "sha256-seUGDj2q84+AjDFM1pxMLlHbe9uBgEhmqA96UHjnCmo=";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
dulwich
|
||||
mock
|
||||
pytestCheckHook
|
||||
six
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"simplekv"
|
||||
];
|
||||
pythonImportsCheck = [ "simplekv" ];
|
||||
|
||||
disabledTests = [
|
||||
# Issue with fixture
|
||||
|
||||
Reference in New Issue
Block a user