mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
python312Packages.pysyncobj: 0.3.12 -> 0.3.13
Diff: https://github.com/bakwc/PySyncObj/compare/refs/tags/v0.3.12...v0.3.13 Changelog: https://github.com/bakwc/PySyncObj/releases/tag/v0.3.13
This commit is contained in:
parent
9ba2a6c661
commit
7489e7d689
@ -3,22 +3,25 @@
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysyncobj";
|
||||
version = "0.3.12";
|
||||
format = "setuptools";
|
||||
version = "0.3.13";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bakwc";
|
||||
repo = "PySyncObj";
|
||||
rev = "refs/tags/${version}";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-ZWzvvv13g/iypm+MIl5q0Y8ekqzZEY5upSTPk3MFTPI=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
# Tests require network features
|
||||
doCheck = false;
|
||||
|
||||
@ -26,10 +29,10 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library for replicating your class";
|
||||
mainProgram = "syncobj_admin";
|
||||
homepage = "https://github.com/bakwc/PySyncObj";
|
||||
changelog = "https://github.com/bakwc/PySyncObj/releases/tag/${version}";
|
||||
license = with licenses; [ mit ];
|
||||
changelog = "https://github.com/bakwc/PySyncObj/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
mainProgram = "syncobj_admin";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user